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

:root {
    --primary-color: #2d5a3f;
    --secondary-color: #4a7c5d;
    --accent-color: #7ba88d;
    --dark-bg: #1a2e1f;
    --light-bg: #f4f7f5;
    --text-dark: #2a2a2a;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e8e3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--light-bg);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--light-bg);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.intro-section {
    padding: 100px 60px;
    background-color: var(--white);
}

.intro-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 0 0 45%;
    background-color: var(--light-bg);
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-section {
    padding: 90px 60px;
    background-color: var(--dark-bg);
}

.values-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.value-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.services-showcase {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.services-list {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 60px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.service-image {
    flex: 0 0 45%;
    background-color: var(--accent-color);
}

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

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

.service-details h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.service-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.contact-form-section {
    padding: 100px 60px;
    background-color: var(--white);
}

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

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

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--light-bg);
    padding: 45px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.service-display {
    padding: 14px 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-light);
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.submit-button:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

.trust-section {
    padding: 100px 60px;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.95;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    opacity: 0.9;
}

.about-content {
    padding: 100px 60px;
    background-color: var(--white);
}

.about-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 0 0 45%;
    background-color: var(--light-bg);
}

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

.approach-section {
    padding: 90px 60px;
    background-color: var(--light-bg);
}

.approach-container {
    max-width: 1300px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

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

.approach-item {
    flex: 1;
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-section {
    padding: 100px 60px;
    background-color: var(--white);
}

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

.mission-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.values-detail {
    padding: 90px 60px;
    background-color: var(--light-bg);
}

.values-detail h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.values-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-block {
    background-color: var(--white);
    padding: 40px 45px;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detail {
    padding: 80px 60px;
    background-color: var(--white);
}

.service-detail-item {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.service-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: var(--secondary-color);
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--light-bg);
}

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

.cta-section {
    padding: 80px 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.contact-page-content {
    padding: 80px 60px;
    background-color: var(--white);
}

.contact-info-section {
    max-width: 1100px;
    margin: 0 auto 60px;
}

.contact-info-section h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    gap: 60px;
}

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

.contact-detail-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-detail-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-approach {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 50px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.contact-approach h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-approach p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.location-info {
    max-width: 1100px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 60px;
    background-color: var(--white);
}

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

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-container > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.button-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: var(--secondary-color);
}

.button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-page {
    padding: 60px 60px 100px;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-container h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.legal-container h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.legal-container p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-container a {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.cookie-table td {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-container,
    .about-split,
    .service-item,
    .service-detail-item,
    .contact-details,
    .steps-grid,
    .approach-grid,
    .trust-stats,
    .values-grid {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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