:root {
    --color-primary: #1a5f4a;
    --color-primary-dark: #134436;
    --color-secondary: #e8b74a;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #1a2634;
    --color-border: #e1e5e9;
    --font-heading: 'Georgia', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --narrow-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

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

li {
    margin-bottom: 0.5rem;
}

.nav-editorial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 0 1.5rem;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 400;
}

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

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: var(--color-primary);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.2s ease;
}

.hero-editorial {
    margin-top: 70px;
    display: flex;
    min-height: calc(100vh - 70px);
    max-height: 900px;
}

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

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

.hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-text);
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.btn-secondary:hover {
    opacity: 0.9;
    color: var(--color-text);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 0.95rem 1.95rem;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

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

.btn-full {
    width: 100%;
    text-align: center;
}

.story-intro,
.story-section {
    padding: 5rem 1.5rem;
}

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

.story-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-section.alt-bg {
    background: var(--color-bg-alt);
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.visual-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 4rem 2rem 3rem;
    color: #fff;
}

.visual-overlay blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 1rem;
    text-align: center;
}

.visual-overlay cite {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.inline-cta {
    max-width: var(--narrow-width);
    margin: 2rem auto 0;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.inline-cta p {
    margin: 0;
    font-size: 1.1rem;
}

.topic-list {
    list-style: none;
    padding: 0;
}

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

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

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

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

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

.services-cards {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 1.34rem);
    min-width: 300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

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

.card-content {
    padding: 1.5rem;
}

.featured-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-text);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

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

.card-link {
    font-size: 0.95rem;
    font-weight: 500;
}

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

.testimonial-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.testimonial p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

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

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

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary {
    background: var(--color-secondary);
    color: var(--color-text);
}

.cta-section .btn-primary:hover {
    background: #d4a73d;
}

.cta-section .btn-outline {
    border-color: #fff;
    color: #fff;
}

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

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

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

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

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
}

.page-header {
    margin-top: 70px;
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
    text-align: center;
}

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

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin: 0;
}

.image-break {
    height: 400px;
    overflow: hidden;
}

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

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

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

.team-member {
    text-align: center;
    width: calc(33.333% - 1.34rem);
    min-width: 280px;
}

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

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

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

.team-member .role {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

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

.values-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: 8px;
}

.value h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.value p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

.program-intro {
    padding: 3rem 1.5rem 0;
}

.program-detail {
    padding: 5rem 1.5rem;
}

.program-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.program-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

.badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-secondary);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.program-content {
    flex: 1;
}

.program-tag {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.program-topics {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.program-topics li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.program-topics li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.program-details {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
}

.detail-value {
    color: var(--color-text-light);
}

.program-pricing {
    margin: 2rem 0;
}

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

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

.program-cta {
    margin-top: 1rem;
}

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

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

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

.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-bg-alt);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table tr.highlight {
    background: rgba(26, 95, 74, 0.05);
}

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

.enrol-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.enrol-info {
    flex: 1;
}

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

.enrol-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.enrol-form {
    flex: 1;
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding-bottom: 1.25rem;
    color: var(--color-text-light);
}

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

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

.contact-info {
    flex: 1;
}

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

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

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

.contact-item address {
    font-style: normal;
    line-height: 1.8;
}

.contact-item a {
    display: block;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0.25rem 0 0.75rem;
}

.location-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.location-info h3 {
    margin-bottom: 0.75rem;
}

.location-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-map {
    flex: 1;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

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

.enquiry-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.enquiry-card {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.enquiry-card h3 {
    margin-bottom: 0.75rem;
}

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

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

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

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

.legal-section h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

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

.thanks-page {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

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

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

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

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

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

.thanks-details p {
    margin: 0;
}

.thanks-next {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.next-steps {
    padding-left: 1.5rem;
}

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

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

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-cookie-accept {
    background: var(--color-primary);
    color: #fff;
}

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.9;
}

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--color-secondary);
    color: var(--color-text);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    color: var(--color-text);
}

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

    .hero-content {
        padding: 3rem 1.5rem;
        max-width: none;
    }

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

    .hero-image {
        height: 350px;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .program-layout,
    .program-layout.reverse {
        flex-direction: column;
    }

    .program-image {
        flex: none;
        width: 100%;
    }

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

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

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

    .footer-links {
        gap: 2rem;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

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

    .service-card {
        width: 100%;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .team-member {
        width: 100%;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

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

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

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