* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

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

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

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

.hero-content p {
    font-size: 19px;
    color: #495057;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

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

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

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.intro-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.text-block p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 18px;
}

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

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

.values-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.services-preview {
    padding: 90px 60px;
    background-color: #ffffff;
}

.testimonial-section {
    padding: 90px 60px;
    background-color: #2c5f2d;
    text-align: center;
}

.testimonial-section blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-section p {
    font-size: 24px;
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-section cite {
    color: #d4e5d5;
    font-size: 16px;
    font-style: normal;
}

.form-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

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

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

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

.main-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
}

.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;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #343a40;
}

.footer-bottom p {
    font-size: 13px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 24px;
    display: none;
    z-index: 2000;
}

.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 {
    color: #ffffff;
    font-size: 14px;
    flex: 1;
}

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

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

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

.cookie-btn.accept:hover {
    background-color: #234a23;
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #2c5f2d;
    padding: 80px 60px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.header-content p {
    font-size: 19px;
    color: #d4e5d5;
}

.about-intro {
    padding: 90px 60px;
    background-color: #ffffff;
}

.approach-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

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

.approach-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-left: 4px solid #2c5f2d;
}

.approach-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.approach-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.experience-split {
    padding: 90px 60px;
    background-color: #ffffff;
}

.team-stats {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #495057;
}

.cta-about {
    padding: 90px 60px;
    background-color: #2c5f2d;
    text-align: center;
}

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

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

.services-intro {
    padding: 60px 60px 40px;
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
}

.services-list {
    padding: 40px 60px 90px;
    background-color: #ffffff;
}

.service-item {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-content {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.service-text {
    flex: 1.2;
}

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

.service-text p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 15px;
    color: #495057;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
}

.price-period {
    font-size: 16px;
    color: #6c757d;
}

.service-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cta {
    padding: 90px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.contact-content {
    padding: 90px 60px;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 18px;
    color: #2c5f2d;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #1a1a1a;
}

.note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 12px;
    font-style: italic;
}

.contact-secondary {
    padding: 60px 60px 90px;
    background-color: #f8f9fa;
}

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

.info-box {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-box p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
}

.location-info {
    padding: 60px 60px 90px;
    background-color: #ffffff;
    text-align: center;
}

.location-info h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-info p {
    font-size: 16px;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    padding: 90px 60px;
    background-color: #ffffff;
    min-height: 500px;
}

.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: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.thanks-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.thanks-info p {
    font-size: 16px;
    color: #495057;
}

.thanks-next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #495057;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

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

.thanks-additional {
    padding: 60px 60px 90px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.additional-content p {
    font-size: 16px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 60px 90px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.legal-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234a23;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .values-grid,
    .approach-content,
    .stats-grid,
    .info-boxes,
    .footer-content {
        flex-direction: column;
    }

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

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

    .text-block h2,
    .values-section h2,
    .approach-section h2,
    .form-intro h2,
    .cta-about h2,
    .services-cta h2,
    .contact-info h2 {
        font-size: 30px;
    }

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

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