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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    display: flex;
}

.sidebar-nav {
    width: 280px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #1e3a5f 0%, #2c4f7c 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 100;
}

.nav-brand {
    margin-bottom: 15px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #b8cfe0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 8px;
}

.nav-links a {
    display: block;
    padding: 12px 16px;
    color: #e8f1f8;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
    font-size: 15px;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 6px;
}

.legal-links a {
    font-size: 12px;
    color: #b8cfe0;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #ffffff;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    width: calc(100% - 280px);
}

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #1a2332;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a2332;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #e0e7ee;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

.intro-offset {
    padding: 120px 80px 80px;
    background-color: #f8fafb;
}

.intro-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    align-items: flex-start;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1e3a5f;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5f7a;
}

.intro-image {
    flex: 0.8;
    background-color: #e5eaef;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    padding: 100px 80px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.services-header p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e7ee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e5eaef;
}

.service-card h3 {
    padding: 20px 24px 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1e3a5f;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2c4f7c;
}

.contact-section {
    padding: 100px 80px;
    background-color: #f8fafb;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-container {
    flex: 1.2;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.form-container > p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c4f7c;
}

.submit-button {
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #c0392b;
}

.trust-indicators {
    flex: 0.8;
}

.indicator {
    margin-bottom: 36px;
}

.indicator h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e3a5f;
}

.indicator p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.disclaimer-section {
    padding: 60px 80px;
    background-color: #f0f3f5;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6c7a89;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-header {
    padding: 80px 80px 60px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4f7c 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #e0e7ee;
}

.about-content {
    padding: 80px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block img {
    flex: 0 0 45%;
    width: 45%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e5eaef;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.text-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5f7a;
}

.values-section {
    padding: 80px;
    background-color: #f8fafb;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e3a5f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.cta-section-simple {
    padding: 80px;
    background-color: #1e3a5f;
    text-align: center;
    color: #ffffff;
}

.cta-section-simple h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section-simple p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e0e7ee;
}

.services-detailed {
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5f7a;
}

.service-features {
    list-style: none;
    margin: 28px 0 32px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-detail-image {
    flex: 0 0 40%;
}

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

.contact-info-section {
    padding: 60px 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5f7a;
}

.contact-image {
    flex: 0 0 45%;
    background-color: #e5eaef;
    border-radius: 8px;
    overflow: hidden;
}

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

.accessibility-info {
    padding: 60px 80px;
    background-color: #f8fafb;
}

.accessibility-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e3a5f;
}

.accessibility-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5f7a;
    max-width: 900px;
}

.thanks-section {
    padding: 100px 80px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5f7a;
}

#service-confirmation {
    font-size: 16px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 48px;
}

.next-steps {
    max-width: 800px;
    margin: 60px auto;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1e3a5f;
}

.step {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f8fafb;
    border-radius: 8px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c4f7c;
}

.step p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.email-note {
    font-size: 14px;
    color: #7f8c8d;
    margin: 40px 0 32px;
}

.legal-page {
    padding: 60px 80px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c4f7c;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5f7a;
}

.legal-page ul {
    margin: 16px 0 20px 24px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #4a5f7a;
}

.legal-page a {
    color: #2c4f7c;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e3a5f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie:hover {
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 240px;
    }

    .main-content {
        margin-left: 240px;
        width: calc(100% - 240px);
    }

    .hero-overlay {
        padding: 60px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .intro-offset,
    .services-preview,
    .contact-section,
    .about-content,
    .values-section,
    .cta-section-simple,
    .services-detailed,
    .contact-info-section,
    .accessibility-info,
    .thanks-section,
    .legal-page,
    .disclaimer-section {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero-overlay {
        padding: 40px 30px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .intro-content,
    .content-block,
    .service-detail,
    .contact-section,
    .contact-info-section {
        flex-direction: column;
    }

    .content-block.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

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

    .intro-offset,
    .services-preview,
    .contact-section,
    .about-content,
    .values-section,
    .cta-section-simple,
    .services-detailed,
    .contact-info-section,
    .accessibility-info,
    .thanks-section,
    .legal-page,
    .disclaimer-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .page-header {
        padding: 50px 30px 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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