* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    min-height: 100vh;
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #000;
}
.links {
    margin-bottom: 40px;
}

.links a {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #c13500;
    text-decoration: none;
    font-weight: 500;
}

.links a:hover {
    background: rgba(255, 255, 255, 0.2);
}
/* horní pruh */
.topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(6px);
}

.logo {
    height: 48px;
    width: auto;
}

.title {
    font-size: 22px;
    font-weight: 600;
}

/* obsah */
.content {
    padding: 80px 24px;
    max-width: 900px;
    margin: auto;
}

.card {
    background: rgba(255, 255, 255, 0.39);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card h1 {
    font-size: 36px;
    margin-bottom: 8px;
}




.content h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.content p {
    font-size: 18px;
    opacity: 0.9;
}

/* sekce dotazy */
.contact {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.35)
}

.contact h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

.contact a {
    color: #c13500;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 32px;
}