/* Reset and Base Styles */
* {
    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: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.main-nav {
    background: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a4f;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f8f9fa;
}

.hero-text {
    max-width: 600px;
}

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

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

.hero-visual {
    flex: 1;
    background: linear-gradient(135deg, #2c7a4f 0%, #27ae60 100%);
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 122, 79, 0.3), rgba(39, 174, 96, 0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ffffff" opacity="0.1" x="0" y="0" width="200" height="200"/><rect fill="%23ffffff" opacity="0.05" x="200" y="200" width="200" height="200"/><circle fill="%23ffffff" opacity="0.1" cx="300" cy="100" r="80"/><circle fill="%23ffffff" opacity="0.05" cx="100" cy="300" r="60"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

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

/* Intro Split Section */
.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-visual {
    flex: 1;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    width: 80%;
    height: 70%;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 8px;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.services-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-visual {
    height: 220px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-info p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

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

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.price-period {
    font-size: 0.95rem;
    color: #666;
}

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

.btn-select-service:hover {
    background: #229954;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    min-height: 70vh;
    background: #f8f9fa;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.trust-visual {
    flex: 1;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-image {
    width: 80%;
    height: 70%;
    background: linear-gradient(225deg, #27ae60, #2ecc71);
    border-radius: 8px;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    color: #27ae60;
    font-style: normal;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px 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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    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: 1.1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Why Choose Section */
.why-choose {
    padding: 5rem 2rem;
    background: #ffffff;
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.why-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.why-item h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-item p {
    color: #555;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #cccccc;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c7a4f 0%, #27ae60 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Story Split */
.about-story-split {
    display: flex;
    min-height: 70vh;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

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

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-visual {
    flex: 1;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image {
    width: 80%;
    height: 70%;
    background: linear-gradient(180deg, #27ae60, #2ecc71);
    border-radius: 8px;
}

/* Team Approach */
.team-approach {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

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

.approach-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-image {
    width: 90%;
    height: 500px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 8px;
}

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

.approach-item h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

/* Credentials Split */
.credentials-split {
    display: flex;
    min-height: 70vh;
    background: #f8f9fa;
}

.credentials-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.credentials-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.credentials-list {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.credentials-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.credentials-content p {
    color: #555;
    line-height: 1.7;
}

.credentials-visual {
    flex: 1;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credentials-image {
    width: 80%;
    height: 70%;
    background: linear-gradient(270deg, #27ae60, #2ecc71);
    border-radius: 8px;
}

/* CTA Sections */
.cta-about,
.cta-services {
    padding: 5rem 2rem;
    background: #27ae60;
    color: #ffffff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background: #ffffff;
    color: #27ae60;
}

.cta-content .btn-primary:hover {
    background: #f8f9fa;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.service-detail-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.service-detail-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 8px;
}

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
}

.pricing-period {
    font-size: 1rem;
    color: #666;
}

/* Service Guarantee */
.service-guarantee {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.guarantee-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.guarantee-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.guarantee-item h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: #555;
    line-height: 1.7;
}

/* Contact Split */
.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.contact-detail a {
    color: #27ae60;
    font-weight: 500;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-map-placeholder {
    width: 100%;
    height: 500px;
    background: #e8f5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    background: rgba(39, 174, 96, 0.9);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 2rem;
    background: #27ae60;
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: #ffffff;
}

.contact-cta .cta-content p {
    color: #ffffff;
}

/* Coverage Area */
.coverage-area {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.coverage-content {
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.coverage-content > p {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.area-column {
    flex: 1;
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.area-column ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.coverage-note {
    text-align: center;
    color: #555;
    font-style: italic;
    margin-top: 2rem;
}

/* FAQ Contact */
.faq-contact {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

/* Thanks Page */
.thanks-hero {
    padding: 5rem 2rem;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.thanks-service-info {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service-text {
    color: #555;
    font-size: 1.1rem;
}

.selected-service-text strong {
    color: #27ae60;
}

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

.thanks-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.thanks-note a {
    color: #27ae60;
    font-weight: 500;
}

/* Thanks Reassurance */
.thanks-reassurance {
    padding: 5rem 2rem;
    background: #ffffff;
}

.reassurance-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.reassurance-item {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.reassurance-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.reassurance-item p {
    color: #555;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

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

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

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #27ae60;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-story-split,
    .approach-split,
    .credentials-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-grid {
        flex-direction: column;
    }

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

    .why-grid,
    .values-grid,
    .guarantee-grid {
        flex-direction: column;
    }

    .why-item,
    .value-card,
    .guarantee-item {
        flex: 1 1 100%;
    }

    .areas-grid {
        flex-direction: column;
    }

    .reassurance-grid {
        flex-direction: column;
    }

    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .services-header h2,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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