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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border: #bdc3c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

/* Navigation - Split Style */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    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: var(--primary);
}

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

.nav-right a {
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--secondary);
}

.nav-cta {
    background-color: var(--secondary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: #c0392b;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-right {
    flex: 1;
    min-height: 600px;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cta-primary-large {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary-large:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Value Split Sections */
.value-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

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

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.link-arrow {
    color: var(--secondary);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow::after {
    content: " →";
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-header-centered p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-height: 300px;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-select {
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #34495e;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-content {
    flex: 1;
    background-color: var(--primary);
    color: white;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.testimonial-content cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.8;
}

.testimonial-image {
    flex: 1;
}

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

/* Form Split Section */
.form-split {
    display: flex;
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.form-left {
    flex: 1;
    padding: 3rem 5%;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.form-right {
    flex: 1;
    padding: 3rem 5%;
    background-color: white;
}

.main-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Process Split */
.process-split {
    display: flex;
    padding: 5rem 0;
}

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 50px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step p {
    color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 5%;
    background-color: var(--primary);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background-color: var(--secondary);
    color: white;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-cookie-reject:hover {
    border-color: var(--text-dark);
}

/* About Page Specific */
.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

.story-section {
    padding: 5rem 5%;
    background-color: white;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.story-container p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.values-split {
    display: flex;
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.value-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-showcase {
    padding: 5rem 5%;
    text-align: center;
}

.team-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.numbers-split {
    display: flex;
    padding: 5rem 0;
}

.stat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-box {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-light);
}

.approach-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.approach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.approach-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.approach-steps-split {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.approach-step {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
}

.step-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.approach-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
}

/* Services Page */
.services-hero {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-intro-split {
    display: flex;
    padding: 5rem 0;
}

.services-detailed {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

.service-detail-card {
    background-color: white;
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-split {
    display: flex;
}

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

.service-detail-image {
    flex: 1;
    min-height: 500px;
}

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

.service-detail-info {
    flex: 1;
    padding: 3rem;
}

.service-detail-info h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.service-tagline {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.service-description h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select-btn:hover {
    background-color: #34495e;
}

.pricing-transparency {
    padding: 5rem 5%;
    text-align: center;
}

.transparency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.transparency-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-notes {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-note-item {
    flex: 1;
    text-align: left;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.pricing-note-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.pricing-note-item p {
    color: var(--text-light);
}

.services-cta-split {
    display: flex;
    padding: 5rem 0;
    background-color: white;
}

/* Contact Page */
.contact-hero {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-split-main {
    display: flex;
    padding: 5rem 0;
}

.contact-info-side {
    flex: 1;
    padding: 3rem 5%;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.contact-detail p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--secondary);
}

.note-small {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-side {
    flex: 1;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-methods {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-methods h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.methods-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.method-link {
    color: var(--secondary);
    font-weight: 600;
}

.method-link:hover {
    text-decoration: underline;
}

.faq-contact {
    padding: 5rem 5%;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-cta {
    padding: 5rem 5%;
    background-color: var(--primary);
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: white;
}

.contact-cta .cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    padding: 5rem 5%;
    text-align: center;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    text-align: left;
    margin-bottom: 3rem;
}

.timeline-step .step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-resources {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.thanks-resources h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

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

.resource-card {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--secondary);
    font-weight: 600;
}

.resource-link:hover {
    text-decoration: underline;
}

.thanks-testimonial {
    padding: 5rem 5%;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
}

.testimonial-box blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-box cite {
    font-style: normal;
    color: var(--text-light);
}

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

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.last-update {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-section a {
    color: var(--secondary);
    text-decoration: underline;
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary);
}

.cookie-table td {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .testimonial-split,
    .form-split,
    .process-split,
    .services-intro-split,
    .contact-split-main,
    .services-cta-split {
        flex-direction: column;
    }

    .hero-right,
    .split-image,
    .service-visual {
        min-height: 400px;
    }

    .service-card {
        flex-direction: column !important;
    }

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

    .approach-steps-split {
        flex-direction: column;
    }

    .pricing-notes {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

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

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

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

    .hero-left h1,
    .about-hero-split h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .split-content h2,
    .section-header-centered h2 {
        font-size: 1.8rem;
    }

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

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