/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #229954;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    text-transform: lowercase;
}

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

.nav-right a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: #27ae60;
}

/* Hero Section - Split Screen */
.hero-split {
    min-height: 85vh;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

/* Intro Section - Alternating Split */
.intro-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Services Showcase - Split */
.services-showcase {
    padding: 6rem 5%;
}

.showcase-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-text {
    flex: 0 0 350px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.showcase-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #27ae60;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.1);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-item p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.select-service {
    padding: 0.75rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonial Section - Split */
.testimonial-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: #27ae60;
    color: #ffffff;
}

.testimonial-content {
    flex: 1;
    max-width: 600px;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1.125rem;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* Approach Section */
.approach-section {
    padding: 6rem 5%;
}

.approach-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.step p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #ffffff;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1.2;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: #e9ecef;
}

/* Form Section - Split */
.form-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.form-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.form-container {
    flex: 1;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    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: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #e9ecef;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer-column p {
    line-height: 1.7;
    color: #adb5bd;
}

.footer-column a {
    display: block;
    margin-bottom: 0.5rem;
    color: #e9ecef;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #adb5bd;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(39, 174, 96, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-split-page {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-page {
    flex: 1;
}

.hero-text-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.hero-text-page p {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.hero-image-page {
    flex: 1;
}

.hero-image-page img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Story Section */
.story-section {
    padding: 6rem 5%;
}

.story-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-card {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mission-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.mission-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
}

.team-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-info p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.team-image {
    flex: 1;
}

.team-image img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Certifications */
.certifications-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.certifications-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cert-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.cert-item p {
    color: #5a6c7d;
}

/* Approach Detail */
.approach-detail {
    padding: 6rem 5%;
}

.approach-split-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-image-detail {
    flex: 1;
}

.approach-image-detail img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.approach-text-detail {
    flex: 1;
}

.approach-text-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.approach-text-detail p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Impact Section */
.impact-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.impact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-around;
}

.impact-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.impact-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1.2;
}

.impact-unit {
    display: block;
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* CTA About */
.cta-about {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.cta-about .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Services Page Specific */
.services-intro {
    padding: 4rem 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-intro p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.service-detail {
    padding: 4rem 5%;
}

.service-detail.alt {
    background-color: #f8f9fa;
}

.service-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.comparison-section {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.comparison-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-cta {
    color: #27ae60;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #229954;
}

/* Contact Page */
.contact-info-section {
    padding: 6rem 5%;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-item a {
    color: #27ae60;
}

.map-placeholder {
    flex: 1;
}

.map-placeholder img {
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.map-caption {
    margin-top: 1rem;
    text-align: center;
    color: #5a6c7d;
    font-style: italic;
}

.contact-approach {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.approach-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.process-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-section {
    padding: 6rem 5%;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.team-availability {
    padding: 4rem 5%;
    background-color: #27ae60;
    color: #ffffff;
    text-align: center;
}

.availability-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.availability-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 5%;
    text-align: center;
    min-height: 70vh;
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.selected-service-info {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 3rem;
}

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

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: #34495e;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.additional-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.additional-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.additional-info p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
}

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

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.update-date {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e9ecef;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a252f;
}

.cookie-table td {
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.75rem;
    }

    .showcase-split {
        flex-direction: column;
    }

    .showcase-text {
        position: static;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-content,
    .intro-split,
    .approach-split,
    .story-split,
    .team-split,
    .service-split,
    .form-split,
    .contact-split,
    .hero-split-page,
    .approach-split-detail {
        flex-direction: column;
    }

    .testimonial-split {
        flex-direction: column-reverse;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .stats-container,
    .impact-stats {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

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

    .value-card,
    .service-item,
    .mission-card,
    .comparison-card {
        min-width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}