* {
    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;
    background-color: #ffffff;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a5f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    padding: 8px 16px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin: 0 20px;
}

.ad-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d7a5f;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8fafb;
}

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

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2d7a5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #245a48;
    transform: translateY(-2px);
}

.insight-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.split-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    padding: 100px 0;
    background-color: #f8fafb;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header-center p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 350px;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2d7a5f;
    margin-bottom: 16px;
}

.select-service {
    padding: 12px 24px;
    background-color: #2d7a5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #245a48;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-points {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d7a5f;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-section {
    padding: 100px 0;
    background-color: #f8fafb;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

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

.form-intro p {
    font-size: 17px;
    color: #4a5568;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d7a5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #245a48;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #6c757d;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
}

.footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.cookie-buttons {
    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: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #2d7a5f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #245a48;
    transform: translateY(-1px);
}

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

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

.page-hero {
    padding: 80px 0 40px;
    background-color: #f8fafb;
}

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

.page-lead {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.section-title-center {
    text-align: center;
    font-size: 40px;
    color: #1a2332;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
}

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: #2d7a5f;
}

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

.cta-box h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: #e8f5f1;
    margin-bottom: 32px;
}

.cta-box .cta-primary {
    background-color: #ffffff;
    color: #2d7a5f;
}

.cta-box .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a5f;
    font-weight: 700;
}

.service-pricing-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a5f;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 18px;
    color: #1a2332;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-approach {
    padding: 80px 0;
    background-color: #f8fafb;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d7a5f;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8fafb;
    padding: 32px;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.selected-service-info {
    background-color: #e8f5f1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.selected-service-info p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

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

.btn-primary {
    padding: 16px 32px;
    background-color: #2d7a5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #245a48;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    color: #2d7a5f;
    text-decoration: none;
    border: 2px solid #2d7a5f;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #e8f5f1;
    transform: translateY(-2px);
}

.next-steps-section {
    padding: 80px 0;
    background-color: #f8fafb;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.next-step-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #2d7a5f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.next-step-card h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 12px;
    font-weight: 600;
}

.next-step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.additional-resources {
    padding: 80px 0;
    background-color: #ffffff;
}

.resources-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8fafb;
    padding: 40px;
    border-radius: 8px;
}

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

.resource-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.link-arrow {
    color: #2d7a5f;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.link-arrow::after {
    content: " →";
}

.link-arrow:hover {
    color: #245a48;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.legal-wrapper h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-wrapper ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-wrapper ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-wrapper a {
    color: #2d7a5f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-wrapper a:hover {
    color: #245a48;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .section-header-center h2,
    .section-title-center {
        font-size: 32px;
    }

    .trust-points {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

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