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

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

/* Typography */
h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.center {
    text-align: center;
}

/* Split Screen Layouts */
.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Hero Section */
.hero-split {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    position: relative;
}

.hero-image img {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.intro-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

/* Feature Split Sections */
.feature-split {
    padding: 5rem 0;
    background-color: #ffffff;
}

.feature-split.reverse {
    background-color: #f8f9fa;
}

.feature-content,
.feature-text {
    padding: 2rem 0;
}

.text-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #3498db;
    font-size: 1.1rem;
}

.text-link:hover {
    color: #2980b9;
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
    flex-grow: 1;
}

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

/* Buttons */
.cta-btn,
.cta-btn-large,
.btn-primary,
.btn-secondary,
.btn-submit,
.select-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cta-btn,
.cta-btn-large,
.btn-primary,
.btn-submit {
    background-color: #3498db;
    color: #ffffff;
}

.cta-btn:hover,
.cta-btn-large:hover,
.btn-primary:hover,
.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.cta-btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

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

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.select-service {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
}

.select-service:hover {
    background-color: #2980b9;
}

/* Testimonial Section */
.testimonial-split {
    padding: 5rem 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-content {
    padding: 2rem 0;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #bdc3c7;
}

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

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

.value-item {
    flex: 1;
    padding: 2rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
}

/* Process Section */
.process-split {
    padding: 5rem 0;
}

.process-content {
    padding: 2rem 0;
}

.process-list {
    list-style: none;
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 0;
}

.process-list li strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-list li strong::before {
    content: counter(step-counter) ". ";
    color: #3498db;
    font-weight: 700;
}

.process-list li p {
    color: #555;
    margin-bottom: 0;
}

/* CTA Sections */
.cta-section {
    padding: 6rem 0;
    background-color: #ecf0f1;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section-alt {
    padding: 6rem 0;
    background-color: #3498db;
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background-color: rgba(255,255,255,0.95);
    border-radius: 8px;
}

.cta-box h2 {
    color: #1a1a1a;
}

.cta-box p {
    color: #555;
    margin-bottom: 2rem;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.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 textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #bdc3c7;
}

/* About Page */
.about-split {
    padding: 5rem 0;
}

.about-text {
    padding: 2rem 0;
}

.mission-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values-split {
    padding: 5rem 0;
}

.values-text {
    padding: 2rem 0;
}

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

.value-block h3 {
    margin-bottom: 0.8rem;
}

.value-block p {
    color: #555;
}

.approach-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.approach-card h3 {
    margin-bottom: 1rem;
}

.approach-card p {
    color: #555;
    margin-bottom: 0;
}

.team-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Services Page */
.services-detailed {
    padding: 4rem 0;
}

.service-detail-split {
    padding: 4rem 0;
}

.service-detail-split:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.service-info {
    padding: 2rem 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

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

.services-faq {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    margin-bottom: 0;
}

/* Contact Page */
.contact-split {
    padding: 5rem 0;
}

.contact-info-box {
    padding: 2rem 0;
}

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

.contact-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.contact-note p {
    margin-bottom: 0;
}

.contact-cta {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

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

.service-confirmation {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.service-selected {
    margin: 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-list {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: #555;
}

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

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.update-date {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        gap: 3rem;
    }

    .feature-split.reverse .split-container {
        flex-direction: column;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .values-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-split {
        padding: 3rem 0;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .container,
    .container-narrow {
        padding: 0 1rem;
    }

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

    .thanks-actions .cta-btn,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }

    h1 {
        font-size: 1.7rem;
    }

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

    .cta-btn,
    .cta-btn-large {
        width: 100%;
        padding: 1rem;
    }
}