* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #8b4513;
    --text-color: #333333;
    --light-text: #666666;
    --background-light: #f8f9fa;
    --background-cream: #faf8f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #6d3610;
}

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

.btn-secondary:hover {
    background-color: var(--background-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    opacity: 0.8;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    background-color: var(--background-light);
    border-radius: 3px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

main {
    margin-top: 70px;
}

.hero-split {
    display: flex;
    min-height: calc(100vh - 70px);
}

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

.hero-left {
    position: relative;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: var(--background-cream);
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.story-section {
    padding: 100px 40px;
    background-color: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.story-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

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

.problem-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.problem-container.reverse {
    flex-direction: row-reverse;
}

.problem-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.problem-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
}

.problem-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.insight-section {
    padding: 80px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.insight-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.insight-content a {
    color: #f0c674;
    text-decoration: underline;
}

.insight-content a:hover {
    opacity: 0.8;
}

.trust-section {
    padding: 80px 40px;
    background-color: var(--white);
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.trust-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-text);
}

.testimonial-section {
    padding: 0;
    background-color: var(--background-cream);
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

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

blockquote {
    margin-bottom: 40px;
}

blockquote p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

blockquote cite {
    font-size: 14px;
    font-style: normal;
    color: var(--accent-color);
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--white);
}

.services-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 17px;
    color: var(--light-text);
}

.services-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.service-card {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image-wrap {
    height: 200px;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.process-section {
    padding: 0;
    background-color: var(--background-light);
}

.process-split {
    display: flex;
    min-height: 700px;
}

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

.process-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

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

.step-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-color);
    min-width: 30px;
}

.step-text h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-text p {
    font-size: 15px;
    color: var(--light-text);
}

.process-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 40px;
    background-color: var(--accent-color);
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    padding: 100px 40px;
    background-color: var(--white);
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-info > p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 40px;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.benefit-icon {
    color: var(--accent-color);
    font-weight: bold;
}

.form-container {
    flex: 1;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.references-section {
    padding: 60px 40px;
    background-color: var(--background-light);
}

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

.references-container h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.references-list {
    list-style: none;
}

.references-list li {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: var(--accent-color);
    text-decoration: underline;
}

.references-list a:hover {
    opacity: 0.8;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.footer-links a,
.footer-legal a {
    display: block;
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 20px;
}

.copyright {
    font-size: 13px;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .hero-split,
    .testimonial-split,
    .process-split {
        flex-direction: column;
    }

    .hero-left {
        min-height: 400px;
    }

    .story-container,
    .problem-container,
    .problem-container.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .form-split {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex-basis: 100%;
    }

    .trust-grid {
        flex-wrap: wrap;
    }

    .trust-item {
        flex-basis: 45%;
    }
}

/* Page Hero Section */
.page-hero {
    background-color: var(--primary-color);
    padding: 120px 40px 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* About Page Styles */
.about-intro {
    padding: 100px 40px;
    background-color: var(--white);
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

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

.about-philosophy {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.philosophy-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.philosophy-item {
    flex: 1;
}

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

.philosophy-item p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

.about-team {
    padding: 0;
    background-color: var(--white);
}

.team-split {
    display: flex;
    min-height: 500px;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

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

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

.team-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-content p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-values {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

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

.value-number {
    font-size: 36px;
    font-weight: 300;
    color: var(--accent-color);
}

.value-text {
    font-size: 14px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-workshop {
    padding: 100px 40px;
    background-color: var(--background-cream);
}

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

.workshop-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.workshop-content p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-cta {
    padding: 80px 40px;
    background-color: var(--accent-color);
    text-align: center;
}

/* Services Page Styles */
.services-full {
    padding: 80px 40px;
    background-color: var(--white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 17px;
    color: var(--light-text);
    line-height: 1.8;
}

.service-full-item {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-full-item:last-of-type {
    border-bottom: none;
}

.service-full-item.alt-bg {
    background-color: var(--background-light);
    margin-left: -40px;
    margin-right: -40px;
    padding: 60px 40px;
    max-width: none;
}

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

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

.service-full-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-full-content {
    flex: 1;
}

.service-full-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 16px;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-full-content > p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-pricing {
    margin-bottom: 25px;
}

.price-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text);
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--accent-color);
}

.services-extras {
    padding: 80px 40px;
    background-color: var(--background-light);
}

.extras-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.extras-wrapper h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.extra-item {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
}

.extra-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.extra-item p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.extra-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color);
}

.services-cta-section {
    padding: 80px 40px;
    background-color: var(--accent-color);
    text-align: center;
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 40px;
    background-color: var(--white);
}

.contact-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-section > p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.contact-item h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
}

.contact-note {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 4px;
}

.contact-note h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.7;
}

.contact-response {
    flex: 1;
}

.response-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.response-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.response-card h4 {
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.response-card p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.7;
}

.enquiry-list,
.prep-list {
    list-style: none;
}

.enquiry-list li,
.prep-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.enquiry-list li:last-child,
.prep-list li:last-child {
    border-bottom: none;
}

.contact-faq {
    padding: 80px 40px;
    background-color: var(--background-light);
}

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

.faq-wrapper h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 40px;
    background-color: var(--accent-color);
    text-align: center;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 120px 40px;
    background-color: var(--background-cream);
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.detail-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 4px;
    text-align: left;
}

.detail-card h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detail-card p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.thanks-next {
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.next-step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: var(--background-light);
    color: var(--accent-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.next-step p {
    font-size: 16px;
    color: var(--text-color);
}

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

/* Legal Pages Styles */
.legal-page {
    padding: 100px 40px;
    background-color: var(--white);
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.legal-section:first-of-type h2 {
    border-top: none;
    padding-top: 0;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    list-style: none;
    margin-bottom: 20px;
}

.legal-section ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

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

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

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

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

@media (max-width: 768px) {
    .top-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-center {
        order: 3;
    }

    .nav-right {
        gap: 15px;
    }

    main {
        margin-top: 140px;
    }

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

    .hero-right {
        padding: 40px 20px;
    }

    .story-section,
    .problem-section,
    .services-preview,
    .form-section {
        padding: 60px 20px;
    }

    .testimonial-content {
        padding: 40px 20px;
    }

    .process-content {
        padding: 40px 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .trust-item {
        flex-basis: 100%;
    }

    .page-hero {
        padding: 100px 20px 60px;
    }

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

    .about-split,
    .team-split {
        flex-direction: column;
    }

    .team-content {
        padding: 40px 20px;
    }

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

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

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

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

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

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

    .legal-page {
        padding: 60px 20px;
    }

    .legal-container h1 {
        font-size: 32px;
    }
}
