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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7c;
    --accent-color: #e8925c;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #6f6f6f;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #3a7d44;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-secondary: Georgia, "Times New Roman", serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-medium);
}

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

/* Intro Split */
.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image,
.intro-text {
    flex: 1;
}

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

.intro-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-medium);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-inverse {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary-inverse {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary-inverse:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 700;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Insight Split */
.insight-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

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

.insight-left {
    padding-right: 80px;
}

.insight-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-left p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.insight-right img {
    width: 100%;
}

/* Problem Amplification */
.problem-amplification {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.problem-amplification h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.problem-grid {
    display: flex;
    gap: 40px;
}

.problem-item {
    flex: 1;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    color: var(--text-medium);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 8px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: stretch;
}

.testimonial-content,
.testimonial-image {
    flex: 1;
}

.testimonial-content {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    font-family: var(--font-secondary);
}

.testimonial-content cite {
    display: block;
    margin-top: 25px;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

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

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

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

.step-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
}

.trust-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: center;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.form-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--bg-white);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: var(--transition);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
}

.sticky-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

/* Page Hero */
.page-hero {
    padding: 100px 0 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

/* About Split */
.about-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

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

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

.about-left {
    padding-right: 60px;
}

.about-right h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-medium);
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Team Split */
.team-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

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

.team-text,
.team-image {
    flex: 1;
}

.team-text {
    padding-right: 60px;
}

.team-split.reverse .team-text {
    padding-right: 0;
    padding-left: 60px;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-medium);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-cards {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Numbers Section */
.numbers-section {
    padding: 100px 0;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.number-item {
    flex: 1 1 calc(25% - 30px);
    text-align: center;
}

.number-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.number-item p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
}

.service-detail.alternate {
    background-color: var(--bg-light);
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-lead {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-medium);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-image img {
    border-radius: 8px;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.comparison-grid {
    display: flex;
    gap: 40px;
}

.comparison-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.comparison-card p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
    color: var(--text-medium);
}

.comparison-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Contact Split */
.contact-split {
    display: flex;
    gap: 80px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-map {
    flex: 1;
}

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

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p,
.contact-item a {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
}

.contact-map img {
    border-radius: 8px;
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
}

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

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

/* Thanks Page */
.thanks-hero {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--text-medium);
}

.thanks-details {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.thanks-service {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Thanks Resources */
.thanks-resources {
    padding: 100px 0;
}

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

.thanks-resources > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--text-medium);
}

.resource-grid {
    display: flex;
    gap: 40px;
}

.resource-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

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

.resource-card p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

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

/* Legal Page */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.effective-date {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-medium);
}

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

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-medium);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .testimonial-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .form-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-text,
    .insight-left,
    .about-left,
    .team-text {
        padding: 60px 40px;
    }

    .team-split.reverse .team-text {
        padding: 60px 40px;
    }

    .stats-grid,
    .problem-grid,
    .process-steps,
    .trust-grid,
    .values-cards,
    .comparison-grid,
    .resource-grid {
        flex-direction: column;
    }

    .services-grid,
    .philosophy-grid,
    .numbers-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .philosophy-item,
    .number-item,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .service-pricing {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 15px;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .intro-text h2,
    .insight-left h2,
    .about-right h2,
    .team-text h2 {
        font-size: 1.8rem;
    }

    .stats-section,
    .process-section,
    .philosophy-section,
    .values-section,
    .numbers-section,
    .services-preview,
    .problem-amplification,
    .insight-split,
    .about-split,
    .team-split,
    .comparison-section,
    .faq-section,
    .thanks-resources {
        padding: 60px 0;
    }

    .sticky-cta {
        display: none;
    }
}
