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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    border-top: 3px solid #2563eb;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.header-asymmetric {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 2rem 2rem;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-left: 3rem;
}

.hero-title-large {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.8;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -4rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-overlap {
    max-width: 1400px;
    margin: -6rem auto 4rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.intro-card-left {
    flex: 2;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-card-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.intro-card-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.intro-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: #2563eb;
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 15%;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: #0c4a6e;
    font-weight: 800;
}

.services-irregular-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-large {
    flex: 1 1 calc(60% - 2rem);
}

.service-medium {
    flex: 1 1 calc(50% - 2rem);
}

.service-small {
    flex: 1 1 calc(40% - 2rem);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.service-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: auto;
}

.trust-section-diagonal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-content-block {
    flex: 1;
    padding-right: 2rem;
}

.trust-content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0c4a6e;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.trust-image-diagonal {
    flex: 1;
    transform: rotate(-2deg);
    background-color: #e2e8f0;
}

.trust-image-diagonal img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.form-section-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0c4a6e 0%, #1e40af 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 20%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.form-header p {
    color: #475569;
    font-size: 1.1rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #0f172a;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-column p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .hero-offset-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-image-offset {
        margin-top: 2rem;
    }

    .intro-overlap {
        flex-direction: column;
        margin-top: 2rem;
    }

    .trust-section-diagonal {
        flex-direction: column;
    }

    .trust-image-diagonal {
        transform: none;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

    .section-header-offset {
        padding-left: 0;
        text-align: center;
    }

    .service-large,
    .service-medium,
    .service-small {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #1e40af 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-lead,
.services-lead,
.contact-lead {
    font-size: 1.25rem;
    color: #e0f2fe;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0c4a6e;
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.about-image-block {
    flex: 1;
    background-color: #e2e8f0;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #0c4a6e;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.team-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 3rem;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    padding: 1.5rem;
    border-left: 4px solid #2563eb;
    background: #f8fafc;
}

.expertise-title {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 0.75rem;
}

.expertise-item p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
}

.commitment-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.commitment-container {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0c4a6e;
}

.commitment-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.cta-about {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-about:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.services-detailed {
    padding: 4rem 2rem 6rem;
}

.services-detailed-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: #475569;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.services-guarantee {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.guarantee-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0c4a6e;
}

.guarantee-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.contact-main {
    padding: 4rem 2rem 6rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0c4a6e;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

.contact-note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
    border-radius: 8px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    font-size: 1.25rem;
    color: #0c4a6e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-address {
    font-size: 1rem;
    color: #475569;
}

.contact-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.contact-cta-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
}

.cta-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-contact:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.thanks-section {
    min-height: 70vh;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1.1rem;
    color: #1e40af;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #eff6ff;
}

@media (max-width: 1024px) {
    .about-container,
    .contact-container,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .thanks-container {
        padding: 2rem 1.5rem;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

.legal-content {
    padding: 4rem 2rem 6rem;
    background: #f8fafc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0c4a6e;
}

.legal-date {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #0c4a6e;
}

.legal-container h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 0.75rem;
}

.legal-container strong {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem 1.5rem;
    }

    .legal-container h1 {
        font-size: 2.25rem;
    }

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

    .legal-container h3 {
        font-size: 1.2rem;
    }
}