/* ===== Variablen & Reset ===== */
:root {
    --primary-color: #287ea1;
    --secondary-color: #c9a126;
    --secondary-light: rgba(201, 161, 38, 0.25);
    --text-dark: #0a2540;
    --text-medium: #425466;
    --text-light: #6b7c93;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --border-color: #e3e8ef;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Merriweather', serif;
    --font-hero: 'Bowlby One SC', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
}

h1 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-style: normal;
}

h2 {
    font-family: var(--font-hero);
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
}

h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 700;
    font-style: italic;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Navigation ===== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 100px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(40, 119, 178, 0.15);
    filter: blur(120px);
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 126, 161, 0.15);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge .icon,
.hero-badge iconify-icon {
    font-size: 18px;
    min-width: 18px;
    width: 18px;
    height: 18px;
}

.hero-wordmark {
    font-family: var(--font-hero);
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary-color);
    display: grid;
    place-items: center;
    gap: 0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-wordmark .line {
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.hero-wordmark .line.big {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--secondary-color);
}

.hero-wordmark .line.medium {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

.hero-wordmark .line.small {
    font-size: clamp(1.5rem, 6vw, 3rem);
    letter-spacing: 0.16em;
    margin-block: 0.05em;
    z-index: 10;
    color: var(--primary-color);
}

/* Punkt */
.hero-wordmark .line.final .period {
    color: var(--secondary-color);
}

.hero-text {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.25rem 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(40, 126, 161, 0.35);
    position: relative;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 126, 161, 0.45);
    background: #1f6a8a;
}

.btn-hero iconify-icon {
    font-size: 28px;
    min-width: 28px;
    width: 28px;
    height: 28px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero:hover iconify-icon {
    transform: scale(1.15);
}

.btn-primary .icon,
.btn-secondary .icon,
.btn-primary iconify-icon,
.btn-secondary iconify-icon {
    font-size: 22px;
    min-width: 22px;
    width: 22px;
    height: 22px;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: middle;
}

.icon svg {
    width: 100%;
    height: 100%;
    display: block;
    flex-shrink: 0;
}

iconify-icon {
    display: inline-flex !important;
    width: 1em !important;
    height: 1em !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #236888;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(40, 126, 161, 0.05);
}

.hero-image {
    position: relative;
    min-height: 470px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.about .section-header {
    margin-bottom: 0;
}

.about h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 161, 38, 0.15);
    border-radius: 50%;
}

.value-icon .icon,
.value-icon iconify-icon {
    font-size: 64px;
    min-width: 64px;
    width: 64px;
    height: 64px;
    color: var(--secondary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== Future Section ===== */
.future {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
}

.future-items {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.future-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: flex-start;
}

.future-item-icon {
    flex-shrink: 0;
    padding-top: 0.25rem;
}

.future-item-icon .icon,
.future-item-icon iconify-icon {
    font-size: 56px;
    min-width: 56px;
    width: 56px;
    height: 56px;
    color: var(--primary-color);
}

.item-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.future-item-content h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.future-item-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-medium);
}

.future-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
    padding-top: 5.25rem;
}

.future-item-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.future-item-list .icon,
.future-item-list iconify-icon {
    font-size: 20px;
    min-width: 20px;
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.future-item-list span {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
}

/* ===== Mitmachen Section ===== */
.mitmachen {
    padding: 100px 0;
    background: var(--bg-light);
}

.mitmachen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mitmachen-info h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mitmachen-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.mitmachen-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item iconify-icon {
    font-size: 24px;
    min-width: 24px;
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.mitmachen-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.mitmachen-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 126, 161, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.mitmachen-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-cta .btn-primary {
    white-space: nowrap;
}

/* ===== Footer ===== */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-accent);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.25rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        padding: 120px 0 40px;
    }

    .about {
        padding: 60px 0 100px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .hero-image {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .hero-image img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .about h2 {
        font-size: 2.5rem;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .future-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .future-item-icon {
        padding-top: 0;
    }

    .future-item-icon .icon,
    .future-item-icon iconify-icon {
        font-size: 44px;
        min-width: 44px;
        width: 44px;
        height: 44px;
    }

    .future-item-list {
        margin: 0 auto;
        padding-top: 0;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-hero {
        font-size: 1rem;
        padding: 1.1rem 2rem;
        text-align: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .mitmachen-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mitmachen-form-wrapper {
        border-radius: 0;
        box-shadow: none;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== Form Success Message ===== */
.form-success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.form-success-message.show {
    opacity: 1;
}

.success-content {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.success-content iconify-icon {
    font-size: 64px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.success-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-hero);
    text-transform: uppercase;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-close:hover {
    background: #236888;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 140px 0 100px;
    background: var(--bg-white);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: var(--font-hero);
    text-transform: uppercase;
    font-weight: 500;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--secondary-color);
}

.contact-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.contact-block {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.contact-block p {
    margin-bottom: 0.25rem;
}

.contact-block .name,
.dev-info .name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-info h3 {
    margin-top: 0;
}

.dev-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.dev-info p {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 80px;
    }

    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .legal-section {
        margin-bottom: 3rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .contact-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
