* {
    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: #2c3e50;
    display: flex;
    min-height: 100vh;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: #1a2332;
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.nav-links a {
    color: #b8c5d6;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.nav-links a:hover {
    background: #2c3e50;
    color: white;
}

.ad-label {
    font-size: 11px;
    color: #7a8a9e;
    line-height: 1.4;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
}

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-left {
    width: 50%;
    padding: 80px 60px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a2332;
}

.hero-left p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    width: 50%;
    position: relative;
    background: #d5dfe8;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c7a4f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #235d3c;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #2c7a4f;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #2c7a4f;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background: #2c7a4f;
    color: white;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background: white;
}

.intro-block {
    width: 45%;
    background: #e8eef3;
}

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

.intro-text {
    width: 55%;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2332;
}

.intro-text p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.section-header-center p {
    font-size: 17px;
    color: #546e7a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 20px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8eef3;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: #1a2332;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin: 0 24px 20px;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c7a4f;
    margin: 0 24px 16px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #2c7a4f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background: #235d3c;
}

.form-section {
    padding: 100px 60px;
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: #1a2332;
}

.form-container > p {
    text-align: center;
    color: #546e7a;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d5dfe8;
    border-radius: 8px;
    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: #2c7a4f;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c7a4f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background: #235d3c;
}

.trust-section {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
}

.trust-content {
    width: 50%;
}

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2332;
}

.trust-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
}

.trust-image {
    width: 50%;
    background: #d5dfe8;
}

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

.disclaimer-section {
    padding: 60px;
    background: #fff4e6;
    border-left: 4px solid #ff9800;
}

.disclaimer-section p {
    font-size: 14px;
    color: #5d4037;
    line-height: 1.7;
    max-width: 900px;
}

.footer {
    background: #1a2332;
    color: white;
    padding: 60px 60px 30px;
    margin-left: 240px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    color: #b8c5d6;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    text-align: center;
    color: #7a8a9e;
    font-size: 13px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #b8c5d6;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background: #2c7a4f;
    color: white;
}

.btn-accept:hover {
    background: #235d3c;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero {
    padding: 100px 60px 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.page-hero p {
    font-size: 18px;
    color: #546e7a;
}

.services-detail {
    padding: 60px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 16px;
}

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

.service-detail-content {
    width: 50%;
}

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

.service-detail-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c7a4f;
    margin: 24px 0;
}

.service-detail-image {
    width: 50%;
    background: #d5dfe8;
}

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

.about-intro {
    padding: 100px 60px;
    background: #f8f9fa;
}

.about-text-primary {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-primary h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2332;
}

.about-text-primary p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.about-story {
    display: flex;
    padding: 80px 60px;
    gap: 80px;
    align-items: center;
    background: white;
}

.story-left {
    width: 50%;
}

.story-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2332;
}

.story-left p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-right {
    width: 50%;
    background: #d5dfe8;
}

.story-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.about-values {
    padding: 80px 60px;
    background: #f8f9fa;
}

.about-values h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a2332;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    width: calc(50% - 20px);
    padding: 40px;
    background: white;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
}

.value-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.about-certifications {
    padding: 80px 60px;
    background: white;
}

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

.cert-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2332;
}

.cert-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-approach {
    display: flex;
    padding: 80px 60px;
    gap: 80px;
    align-items: center;
    background: #f8f9fa;
}

.approach-image {
    width: 40%;
    background: #d5dfe8;
}

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

.approach-text {
    width: 60%;
}

.approach-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2332;
}

.approach-text p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-footer-cta {
    padding: 80px 60px;
    background: white;
    text-align: center;
}

.about-footer-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a2332;
}

.contact-hero {
    padding: 100px 60px 60px;
    background: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.contact-hero p {
    font-size: 18px;
    color: #546e7a;
}

.contact-info-section {
    padding: 80px 60px;
    background: white;
}

.contact-details {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-block {
    width: 50%;
}

.contact-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a2332;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c7a4f;
}

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

.contact-note {
    font-size: 14px;
    color: #7a8a9e;
    margin-top: 8px;
}

.contact-map {
    width: 50%;
    background: #d5dfe8;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-additional {
    padding: 80px 60px;
    background: #f8f9fa;
}

.contact-additional h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1a2332;
}

.help-options {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 12px;
}

.help-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
}

.help-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-faq {
    padding: 80px 60px;
    background: white;
}

.contact-faq h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1a2332;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
}

.faq-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-content > p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    padding: 24px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 16px;
    color: #2c7a4f;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    padding: 40px;
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2332;
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c7a4f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background: #235d3c;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: #2c7a4f;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #2c7a4f;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #2c7a4f;
    color: white;
}

.thanks-additional {
    text-align: center;
}

.thanks-additional h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.thanks-additional p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 24px;
}

.thanks-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.thanks-links a {
    color: #2c7a4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.thanks-links a:hover {
    color: #235d3c;
}

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

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2332;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a2332;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2c7a4f;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-page a:hover {
    color: #235d3c;
    text-decoration: underline;
}

.legal-page em {
    color: #7a8a9e;
    font-size: 14px;
}

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

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

    .footer {
        margin-left: 200px;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .contact-details,
    .help-options {
        flex-direction: column;
    }

    .contact-block,
    .contact-map {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

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

    .footer {
        margin-left: 0;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .intro-asymmetric,
    .about-story,
    .trust-section,
    .about-approach {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .intro-block,
    .intro-text,
    .story-left,
    .story-right,
    .trust-content,
    .trust-image,
    .approach-image,
    .approach-text,
    .service-detail-content,
    .service-detail-image {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .service-detail-item {
        flex-direction: column;
        padding: 40px 30px;
    }

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

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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