:root {
    --color-primary: #2d5a4a;
    --color-secondary: #8b4513;
    --color-accent: #d4a574;
    --color-dark: #1a1a2e;
    --color-light: #faf8f5;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-white: #ffffff;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', system-ui, sans-serif;
    --max-width-narrow: 680px;
    --max-width-content: 900px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-muted);
    background: var(--color-border);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-bar {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: transform 0.3s ease;
}

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

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

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

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

.hero-editorial {
    position: relative;
    background-color: var(--color-dark);
}

.hero-image-container {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.95));
}

.hero-text-overlay h1 {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.story-section {
    padding: 4rem 2rem;
}

.narrow-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.narrow-content p {
    margin-bottom: 1.5rem;
}

.narrow-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.inline-image {
    max-width: var(--max-width-content);
    margin: 3rem auto;
    padding: 0 2rem;
}

.inline-image.left-offset {
    margin-left: calc((100% - var(--max-width-content)) / 2 - 50px);
}

.inline-image.right-offset {
    margin-right: calc((100% - var(--max-width-content)) / 2 - 50px);
}

.image-container {
    background-color: var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
}

.inline-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    font-style: italic;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--color-white);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
}

.testimonial-inline p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.testimonial-inline cite {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-style: normal;
}

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

.insight-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
}

.insight-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

.insight-image-wrap {
    flex: 0 0 300px;
    background-color: var(--color-dark);
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-section {
    background: var(--color-white);
    padding: 4rem 2rem;
}

.trust-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    text-align: center;
}

.trust-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.pricing-reveal {
    background: var(--color-light);
    padding: 5rem 2rem;
}

.pricing-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.pricing-container h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.course-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.course-card.featured {
    border: 2px solid var(--color-primary);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    z-index: 1;
}

.card-image {
    height: 160px;
    background-color: var(--color-border);
    overflow: hidden;
}

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

.card-content {
    padding: 1.5rem;
}

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

.course-description {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-features li {
    font-size: 0.85rem;
    color: var(--color-dark);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.course-price {
    margin-bottom: 1.25rem;
}

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

.price-period {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-left: 0.25rem;
}

.course-cta {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.course-cta:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

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

.enrol-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.form-wrapper {
    flex: 1 1 400px;
}

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

.form-intro {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 74, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--color-secondary);
}

.form-sidebar {
    flex: 0 0 280px;
}

.sidebar-card {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.next-steps {
    list-style-position: inside;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.next-steps li {
    padding: 0.4rem 0;
}

.sidebar-testimonial {
    padding: 1.5rem;
    background: var(--color-primary);
    border-radius: 8px;
}

.sidebar-testimonial p {
    color: var(--color-white);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.sidebar-testimonial cite {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-style: normal;
}

.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

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

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

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

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

.footer-column address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.email-display {
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 800px;
}

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

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

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.cookie-more {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.cookie-more:hover {
    color: var(--color-white);
}

.page-header {
    background: var(--color-primary);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.page-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.page-content p {
    margin-bottom: 1.25rem;
    color: var(--color-dark);
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.about-hero {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.about-hero-text {
    flex: 1 1 400px;
}

.about-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.about-hero-image {
    flex: 1 1 350px;
    background-color: var(--color-border);
    border-radius: 12px;
    overflow: hidden;
}

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

.team-section {
    background: var(--color-light);
    padding: 4rem 2rem;
}

.team-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.team-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.team-card-image {
    height: 200px;
    background-color: var(--color-border);
    overflow: hidden;
}

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

.team-card-content {
    padding: 1.5rem;
}

.team-card h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.services-grid {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-grid h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-item {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-image {
    height: 180px;
    background-color: var(--color-border);
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

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

.service-item p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.service-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.contact-layout {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

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

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-dark);
    line-height: 1.6;
}

.contact-form-container {
    flex: 1 1 400px;
    background: var(--color-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--color-white);
}

.thanks-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.thanks-container p {
    color: var(--color-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.selected-service strong {
    color: var(--color-primary);
}

.thanks-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.thanks-cta:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .inline-image.left-offset,
    .inline-image.right-offset {
        margin-left: 0;
        margin-right: 0;
    }

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

    .insight-image-wrap {
        flex: 1 1 auto;
        width: 100%;
    }

    .trust-stats {
        gap: 2rem;
    }

    .enrol-container {
        flex-direction: column;
    }

    .form-sidebar {
        flex: 1 1 auto;
    }

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

    .about-hero {
        flex-direction: column-reverse;
    }

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