:root {
    --color-primary: #1e3a5f;
    --color-primary-dark: #152a45;
    --color-secondary: #2c7a7b;
    --color-accent: #e8b923;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background: #236262;
    border-color: #236262;
    color: #fff;
}

.btn-secondary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn-light:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

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

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

.btn-full {
    width: 100%;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #e6f7f7 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
}

.hero-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

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

.hero-image {
    flex: 1;
    max-width: 550px;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

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

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

.stats-section {
    padding: 4rem 1.5rem;
    background: var(--color-primary);
}

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

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.problems-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.problems-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.problems-header h2 {
    margin-bottom: 1rem;
}

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

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

.problem-card {
    flex: 1;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.solution-section {
    display: flex;
    align-items: center;
    padding: 5rem 1.5rem;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.solution-content h2 {
    margin-bottom: 1.5rem;
}

.solution-content p {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.solution-list {
    margin-bottom: 2rem;
}

.solution-list li {
    color: var(--color-text);
    position: relative;
    padding-left: 0.5rem;
}

.solution-image {
    flex: 1;
    max-width: 500px;
}

.solution-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.services-preview {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.services-preview-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.services-cards {
    display: flex;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card.featured {
    border-color: var(--color-secondary);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-duration {
    display: block;
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.service-price {
    margin-bottom: 1.5rem;
}

.service-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-price .price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.services-cta a {
    font-weight: 600;
}

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

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

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary);
}

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

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

.process-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.process-steps {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

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

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

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--color-bg-alt);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
}

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

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.booking-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.booking-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    margin-bottom: 1rem;
}

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

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
}

.booking-benefit svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.booking-form {
    flex: 1;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

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

.footer-column h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

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

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-secondary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform 0.2s ease, background 0.2s ease;
}

.sticky-cta:hover {
    background: #236262;
    color: #fff;
    transform: translateY(-2px);
}

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

.page-hero-small {
    padding: 8rem 1.5rem 3rem;
}

.page-hero-content h1 {
    color: #fff;
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

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

.about-intro {
    padding: 5rem 1.5rem;
}

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

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

.mission-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.mission-card {
    flex: 1;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.mission-card h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.team-section {
    padding: 5rem 1.5rem;
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

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

.team-member {
    flex: 0 1 calc(25% - 1.5rem);
    min-width: 220px;
    text-align: center;
}

.team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

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

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.approach-section {
    display: flex;
    align-items: center;
    padding: 5rem 1.5rem;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-bg-alt);
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    margin-bottom: 1.5rem;
}

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

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-point h4 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.approach-point p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.approach-image {
    flex: 1;
    max-width: 450px;
}

.approach-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.partners-section {
    padding: 5rem 1.5rem;
    text-align: center;
}

.partners-section h2 {
    margin-bottom: 1rem;
}

.partners-section > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.partners-list {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

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

.partners-list p:last-child {
    margin-bottom: 0;
}

.programs-intro {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}

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

.programs-list {
    padding: 2rem 1.5rem 5rem;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.program-item:nth-child(even) {
    background: var(--color-bg-alt);
}

.program-item-reverse {
    flex-direction: row-reverse;
}

.program-content {
    flex: 1.2;
}

.program-tag {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-secondary);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.program-item:nth-child(even) .program-tag {
    background: var(--color-bg);
}

.program-popular {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
}

.program-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.program-features {
    margin-bottom: 1.5rem;
}

.program-features li {
    color: var(--color-text);
}

.program-pricing {
    margin-bottom: 1.5rem;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.program-price-note {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.program-package {
    background: var(--color-secondary);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.program-image {
    flex: 0.8;
}

.program-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.comparison-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.comparison-table th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--color-bg-alt);
}

.guarantee-section {
    padding: 3rem 1.5rem;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #236262 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.guarantee-box h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.guarantee-box p {
    margin-bottom: 0;
    opacity: 0.95;
}

.contact-section {
    padding: 5rem 1.5rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-note {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.contact-note h4 {
    margin-bottom: 0.75rem;
}

.contact-note p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--color-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.enquiry-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.enquiry-types {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.enquiry-type {
    flex: 1;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.enquiry-type h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.enquiry-type p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.faq-mini-section {
    padding: 4rem 1.5rem;
}

.faq-mini-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-mini-section > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.faq-mini-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-mini-item {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.faq-mini-item h4 {
    margin-bottom: 0.5rem;
}

.faq-mini-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.thanks-section {
    padding: 10rem 1.5rem 5rem;
    text-align: center;
    min-height: 60vh;
}

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

.thanks-icon {
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.thanks-section h1 {
    margin-bottom: 1rem;
}

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

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

.submission-summary {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: left;
}

.submission-summary p {
    margin-bottom: 0.5rem;
}

.submission-summary p:last-child {
    margin-bottom: 0;
}

.thanks-next {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.thanks-next h3 {
    margin-bottom: 1rem;
}

.thanks-next ol {
    margin-bottom: 0;
}

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

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

.thanks-resources {
    padding: 4rem 1.5rem;
    background: var(--color-bg-alt);
}

.thanks-resources h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.thanks-resources > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.resources-grid {
    display: flex;
    gap: 1.5rem;
}

.resource-card {
    flex: 1;
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.resource-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

.legal-content {
    padding: 4rem 1.5rem 5rem;
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

.legal-content ul {
    color: var(--color-text-light);
}

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

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

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

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 7rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .solution-section {
        flex-direction: column;
    }

    .solution-image {
        max-width: 100%;
    }

    .services-cards {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .booking-wrapper {
        flex-direction: column;
    }

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

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

    .team-grid {
        justify-content: center;
    }

    .team-member {
        flex: 0 1 calc(50% - 1rem);
    }

    .approach-section {
        flex-direction: column;
    }

    .approach-image {
        max-width: 100%;
    }

    .program-item {
        flex-direction: column;
        padding: 2rem;
    }

    .program-item-reverse {
        flex-direction: column;
    }

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

    .enquiry-types {
        flex-direction: column;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        display: none;
        box-shadow: var(--shadow-md);
    }

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

    .nav-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

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

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

    .stats-grid {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

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

    .sticky-cta {
        bottom: auto;
        top: auto;
        right: 1rem;
        left: 1rem;
        bottom: 70px;
        text-align: center;
    }

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

    .team-member {
        flex: 0 1 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }
}
