/* Reset and Base Styles */
* {
    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: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

/* Ad Notice */
.ad-notice {
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

/* Header - Split Screen Style */
.header-split {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    margin-bottom: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.header-right a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #2c3e50;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

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

.hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image {
    overflow: hidden;
}

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

/* Intro Split Section */
.intro-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

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

.intro-content {
    padding: 20px 0;
}

.intro-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.intro-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.select-service {
    width: 100%;
}

/* Features Split */
.features-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.features-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
}

.features-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Testimonials */
.testimonials-centered {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-centered h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

/* CTA Split Section */
.cta-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background-color: #2c3e50;
    color: #fff;
}

.cta-content {
    margin-bottom: 30px;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-form {
    width: 100%;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form input,
.cta-form textarea {
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 15px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.cta-form button {
    background-color: #27ae60;
}

.cta-form button:hover {
    background-color: #229954;
}

.selected-service-display {
    background-color: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Process Split */
.process-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

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

.process-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step p {
    font-size: 15px;
    color: #666;
}

.process-image {
    margin-bottom: 30px;
}

.process-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #fff;
    padding: 50px 20px 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.page-hero-content h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    color: #666;
}

.page-hero-image {
    margin-top: 30px;
}

.page-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Services Detailed */
.services-detailed {
    padding: 40px 20px;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

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

.service-detail-content {
    padding: 30px 0;
}

.service-detail-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.service-benefits {
    margin: 20px 0;
    padding-left: 20px;
}

.service-benefits li {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.service-price-detail {
    font-size: 20px;
    color: #27ae60;
    font-weight: 700;
    margin: 20px 0;
}

.service-detail-image {
    margin-bottom: 30px;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* CTA Centered */
.cta-centered {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.cta-centered h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-centered p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Split */
.story-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

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

.story-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.story-image {
    margin-bottom: 30px;
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Values Centered */
.values-centered {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.values-centered h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #666;
}

/* Team Split */
.team-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.team-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.team-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.team-image {
    margin-top: 30px;
}

.team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Timeline */
.timeline-centered {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.timeline-centered h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    padding: 20px;
    background: #fff;
    border-left: 4px solid #27ae60;
    border-radius: 6px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 15px;
    color: #666;
}

/* Stats Split */
.stats-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.stats-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.stats-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Mission Centered */
.mission-centered {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.mission-centered h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
}

.mission-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.contact-details h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.email-note,
.hours-note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.contact-map {
    margin-top: 30px;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.map-overlay {
    background-color: rgba(255,255,255,0.95);
    padding: 20px;
    margin-top: -60px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 6px;
    position: relative;
}

.map-overlay p {
    font-size: 14px;
    color: #666;
}

/* Visit Info */
.visit-info-centered {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.visit-info-centered h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.visit-info-centered > p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.directions h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.direction-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.direction-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.direction-item p {
    font-size: 15px;
    color: #666;
}

/* FAQ Split */
.faq-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

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

.faq-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: #666;
}

.faq-image {
    margin-bottom: 30px;
}

.faq-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.email-cta {
    margin-top: 20px;
}

.email-display-large {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

/* Thanks Page */
.thanks-page {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-content > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.service-confirm {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin: 20px auto;
    max-width: 500px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

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

.step-text h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-text p {
    font-size: 15px;
    color: #666;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.thanks-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.info-box a {
    color: #27ae60;
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 20px;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 15px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .header-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
    }

    .header-left {
        margin-bottom: 0;
    }

    .hero-split,
    .intro-split,
    .features-split,
    .cta-split,
    .process-split,
    .story-split,
    .team-split,
    .stats-split,
    .contact-info-split,
    .faq-split,
    .page-hero-split,
    .service-detail-split {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

    .intro-split.reverse,
    .process-split.reverse,
    .story-split.reverse,
    .faq-split.reverse,
    .service-detail-split.reverse {
        flex-direction: row-reverse;
    }

    .hero-content,
    .intro-content,
    .features-content,
    .cta-content,
    .process-content,
    .story-content,
    .team-content,
    .stats-content,
    .contact-details,
    .faq-content,
    .page-hero-content,
    .service-detail-content {
        flex: 1;
        padding: 40px;
    }

    .hero-image,
    .intro-image,
    .features-image,
    .cta-form,
    .process-image,
    .story-image,
    .team-image,
    .stats-image,
    .contact-map,
    .faq-image,
    .page-hero-image,
    .service-detail-image {
        flex: 1;
        margin-bottom: 0;
    }

    .hero-image img,
    .intro-image img,
    .features-image img,
    .process-image img,
    .story-image img,
    .team-image img,
    .stats-image img,
    .contact-map img,
    .faq-image img,
    .page-hero-image img,
    .service-detail-image img {
        height: 500px;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 300px;
    }

    .values-grid,
    .directions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card,
    .direction-item {
        flex: 1;
        min-width: 280px;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .thanks-page {
        flex-direction: row;
        gap: 50px;
    }

    .thanks-content {
        flex: 2;
        text-align: left;
    }

    .thanks-icon {
        margin: 0 0 30px 0;
    }

    .thanks-sidebar {
        flex: 1;
    }

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

    .legal-container {
        padding: 60px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-split {
        padding: 20px 60px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .services-grid,
    .testimonials-centered,
    .values-centered,
    .timeline-centered,
    .visit-info-centered,
    .mission-centered {
        padding: 80px 60px;
    }

    .hero-split,
    .intro-split,
    .features-split,
    .cta-split,
    .process-split,
    .story-split,
    .team-split,
    .stats-split,
    .contact-info-split,
    .faq-split,
    .page-hero-split,
    .services-detailed,
    .thanks-page,
    .legal-page {
        padding: 80px 60px;
    }
}