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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #fafafa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2a7f5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #236b4f;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a4a4a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #333333;
}

.intro-alternating {
    display: flex;
    min-height: 70vh;
}

.section-image-left {
    flex: 1;
    background-color: #f0f0f0;
    overflow: hidden;
}

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

.section-text-right {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-text-right h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-text-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.benefits-split {
    display: flex;
    background-color: #f9f9f9;
}

.benefits-text {
    flex: 1;
    padding: 5rem 5%;
}

.benefits-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2a7f5f;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.benefits-visual {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
}

.benefits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-intro {
    padding: 5rem 5%;
    text-align: center;
    background-color: #ffffff;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid-split {
    padding: 0 5% 5rem;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    background-color: #ececec;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a7f5f;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #2a7f5f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #236b4f;
}

.form-section-split {
    display: flex;
    background-color: #f5f5f5;
    padding: 5rem 5%;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.selected-service-display {
    padding: 1rem;
    background-color: #f0f8f5;
    border: 2px solid #2a7f5f;
    border-radius: 4px;
    color: #2a7f5f;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2a7f5f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #236b4f;
}

.trust-section {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #cccccc;
}

.footer-split {
    background-color: #2a2a2a;
    color: #ffffff;
}

.footer-primary {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5% 3rem;
    gap: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-secondary {
    padding: 2rem 5%;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-secondary p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem !important;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 200;
    border-top: 3px solid #2a7f5f;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    padding: 0.8rem 2rem;
    background-color: #2a7f5f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #236b4f;
}

.btn-reject {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2a7f5f;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.thanks-info {
    text-align: left;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-info h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-info ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.thanks-info li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.thanks-service {
    background-color: #f0f8f5;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-service h3 {
    color: #2a7f5f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.thanks-service p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2a7f5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #236b4f;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #4a4a4a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #333333;
}

.page-hero {
    padding: 5rem 5%;
    background-color: #fafafa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    color: #666;
}

.services-detail-split {
    padding: 3rem 5%;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
}

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

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2a7f5f;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2a7f5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #236b4f;
}

.cta-section-centered {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f5f5f5;
}

.cta-section-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.about-intro-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

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

.expertise-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.expertise-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.expertise-item {
    flex: 1;
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2a7f5f;
}

.expertise-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.values-split {
    display: flex;
}

.values-visual {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-content {
    flex: 1;
    padding: 5rem 5%;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.value-block {
    margin-bottom: 2.5rem;
}

.value-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2a7f5f;
}

.value-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.experience-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.sector-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.sector-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sector-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-approach {
    padding: 5rem 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.team-approach h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-approach p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-hero {
    padding: 5rem 5%;
    background-color: #fafafa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

.contact-split-layout {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #2a7f5f;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.contact-visual-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2a7f5f;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-areas {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.contact-areas h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.area-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2a7f5f;
}

.area-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-cta-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: #ffffff;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-page {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.legal-content a:hover {
    color: #236b4f;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-alternating,
    .benefits-split,
    .service-card,
    .form-section-split,
    .service-detail-card,
    .about-intro-split,
    .values-split,
    .contact-split-layout {
        flex-direction: column;
    }

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

    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-primary {
        flex-direction: column;
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}