:root {
    --color-primary: #2d5016;
    --color-primary-dark: #1e3a0f;
    --color-primary-light: #4a7c28;
    --color-secondary: #8fbc5f;
    --color-accent: #c4a35a;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-light: #f8f9f5;
    --color-white: #ffffff;
    --color-border: #e0e4d9;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style-position: inside;
}

address {
    font-style: normal;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo:hover {
    color: var(--color-primary-dark);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-links a.active {
    color: var(--color-primary);
}

main {
    padding-top: 70px;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

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

.btn-white:hover {
    background: var(--color-light);
    color: var(--color-primary-dark);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

.btn-full {
    width: 100%;
}

.section-tag,
.hero-tag,
.service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    max-width: 600px;
    margin-left: auto;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    padding: 5rem 5%;
    background: var(--color-light);
    text-align: center;
}

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

.intro-wrapper h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.intro-wrapper p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.split-standard,
.split-reverse {
    display: flex;
    min-height: 600px;
}

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

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

.split-content h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
}

.split-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.split-content p:last-of-type {
    margin-bottom: 2rem;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.features-split {
    background: var(--color-white);
}

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

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

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

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

.service-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    max-width: 300px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-split {
    background: var(--color-primary);
}

.testimonial-content {
    background: var(--color-primary);
    color: var(--color-white);
}

.testimonial-content blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.process-section {
    padding: 5rem 5%;
    background: var(--color-white);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.step {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

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

.step h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

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

.cta-banner {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

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

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

.values-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: border-color var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.locations-section {
    padding: 4rem 5%;
    background: var(--color-white);
    text-align: center;
}

.locations-content {
    max-width: 700px;
    margin: 0 auto;
}

.locations-content h2 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

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

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-white);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1.25rem 5%;
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.page-hero {
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.page-hero-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
}

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

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

.philosophy-wrapper > h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1 1 280px;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

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

.values-section {
    padding: 5rem 5%;
    background: var(--color-white);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
}

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

.value-card {
    flex: 1 1 200px;
    padding: 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
}

.value-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

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

.credentials-section {
    padding: 5rem 5%;
    background: var(--color-primary);
}

.credentials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.credentials-content > h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 3rem;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.credential {
    flex: 1 1 280px;
    text-align: center;
}

.credential h3 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.credential p {
    color: rgba(255,255,255,0.85);
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
}

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

.testimonial {
    flex: 1 1 300px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-secondary);
}

.testimonial p {
    font-size: 1rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1rem;
}

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

.services-intro {
    padding: 3rem 5%;
    background: var(--color-white);
    text-align: center;
}

.services-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-intro-content p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
}

.service-detail {
    padding: 4rem 5%;
}

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

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

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

.service-info {
    flex: 1 1 400px;
}

.service-info h2 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

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

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

.service-includes li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.service-pricing {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border);
}

.service-detail.alt-bg .service-pricing {
    background: var(--color-white);
}

.price-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.price-tier:last-child {
    border-bottom: none;
}

.tier-name {
    color: var(--color-text);
}

.tier-price {
    font-weight: 600;
    color: var(--color-primary);
}

.service-image {
    flex: 1 1 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.packages-section {
    padding: 5rem 5%;
    background: var(--color-white);
}

.packages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.packages-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

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

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

.package-card {
    flex: 1 1 280px;
    max-width: 320px;
    padding: 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.package-card.featured {
    background: var(--color-primary);
    color: var(--color-white);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-card.featured h3 {
    color: var(--color-white);
}

.package-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.package-card.featured .package-price {
    color: var(--color-secondary);
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-card li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9375rem;
}

.package-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.package-card.featured li {
    color: rgba(255,255,255,0.9);
}

.contact-main {
    padding: 4rem 5%;
    background: var(--color-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1 1 400px;
}

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

.info-block h2 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.info-block address {
    color: var(--color-text-light);
    line-height: 1.8;
}

.email-link {
    font-size: 1.125rem;
    font-weight: 500;
}

.response-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--color-text);
}

.hours-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
}

.contact-cta {
    flex: 1 1 350px;
}

.cta-card {
    background: var(--color-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.cta-card h2 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.info-card {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.info-card ul,
.info-card ol {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.info-card li {
    margin-bottom: 0.375rem;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.0625rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

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

.map-section {
    padding: 4rem 5%;
    background: var(--color-white);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

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

.map-placeholder {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay p {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 500;
}

.thanks-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--color-light);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-primary);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

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

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

.thanks-details {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.next-steps {
    color: var(--color-text-light);
}

.next-steps li {
    margin-bottom: 0.75rem;
}

.thanks-service {
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

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

.thanks-contact {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.legal-hero {
    padding: 6rem 5% 3rem;
    background: var(--color-dark);
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.legal-hero-content p {
    color: rgba(255,255,255,0.7);
}

.legal-content {
    padding: 4rem 5%;
    background: var(--color-white);
}

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

.legal-wrapper h2 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin: 2.5rem 0 1rem;
}

.legal-wrapper h2:first-of-type {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 1.125rem;
    color: var(--color-dark);
    margin: 1.5rem 0 0.75rem;
}

.legal-wrapper p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.legal-wrapper ul,
.legal-wrapper ol {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.legal-wrapper li {
    margin-bottom: 0.5rem;
}

.legal-wrapper address {
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 1rem 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

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

.cookies-table th {
    background: var(--color-light);
    font-weight: 600;
    color: var(--color-dark);
}

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

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        max-width: none;
        margin: 0;
        padding: 3rem 5%;
    }

    .hero-image {
        height: 350px;
    }

    .split-standard,
    .split-reverse {
        flex-direction: column;
        min-height: auto;
    }

    .split-image {
        height: 300px;
        order: -1;
    }

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

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

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

    .service-image {
        order: -1;
    }
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem 5%;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
    }

    .nav-links a::after {
        display: none;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        min-width: 100%;
    }

    .packages-grid {
        gap: 1rem;
    }

    .package-card {
        max-width: none;
    }

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

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