:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

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

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.875rem;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--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(--secondary);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: white !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: #1e293b;
    color: white;
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-card {
    background: var(--bg-alt);
    color: var(--primary);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

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

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

.btn-full {
    width: 100%;
}

.btn-sticky {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
}

.hero-section {
    padding: 8rem 1.5rem 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-section > * {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-visual {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.visual-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.card-code {
    width: 100%;
    max-width: 420px;
}

.code-header {
    background: var(--secondary);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.code-block {
    padding: 1.5rem;
    margin: 0;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg-alt);
}

.card-cert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 500;
}

.cert-icon {
    width: 24px;
    height: 24px;
}

.trust-bar {
    padding: 2rem 1.5rem;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.trust-logo {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.7;
}

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

.section-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

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

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

.intro-card {
    flex: 1 1 400px;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.intro-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.intro-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.intro-card h3 {
    margin-bottom: 1rem;
}

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

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

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

.programme-card {
    flex: 1 1 340px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

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

.programme-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

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

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

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

.card-features li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.card-pricing {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.card-pricing .price {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.card-pricing .price-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

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

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

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

.method-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.method-content {
    flex: 1 1 500px;
}

.method-content h2 {
    margin-bottom: 1rem;
}

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

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-step {
    display: flex;
    gap: 1.25rem;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    padding-top: 0.25rem;
}

.step-content h4 {
    margin-bottom: 0.375rem;
}

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

.method-visual {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-block {
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-1 {
    background: rgba(37, 99, 235, 0.1);
}

.block-2 {
    background: rgba(6, 182, 212, 0.15);
}

.block-3 {
    background: rgba(16, 185, 129, 0.15);
}

.block-label {
    font-weight: 500;
    color: var(--text);
}

.block-percent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

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

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

.testimonial-card {
    flex: 1 1 340px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.testimonial-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-card footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    opacity: 0.8;
}

.programme-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
}

.testimonial-card:not(.featured) .programme-badge {
    background: var(--bg-alt);
    color: var(--text-light);
}

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

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

.comparison-container h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-table {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-row {
    display: flex;
}

.comparison-header {
    background: var(--secondary);
    color: white;
}

.comparison-cell {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-right: 1px solid var(--border);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    border-color: rgba(255,255,255,0.1);
}

.comparison-row:not(.comparison-header) {
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.row-label {
    font-weight: 500;
    background: var(--bg-alt);
}

.comparison-cell.highlight {
    color: var(--primary);
    font-weight: 500;
}

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

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

.instructor-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.instructor-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.25rem;
}

.instructor-card h4 {
    margin-bottom: 0.25rem;
}

.instructor-title {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.instructor-bio {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

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

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

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

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

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

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

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

.enroll-content {
    flex: 1 1 400px;
}

.enroll-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.enroll-content > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.enroll-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.enroll-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.enroll-benefits svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

.enroll-form {
    flex: 1 1 400px;
    background: var(--bg);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}

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

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

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

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

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

.location-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

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

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

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

.location-info address {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.location-hours {
    color: var(--text-light);
    line-height: 1.8;
}

.location-map {
    flex: 1 1 400px;
}

.map-placeholder {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.map-placeholder span {
    color: var(--text-light);
}

.map-placeholder.large {
    padding: 5rem 2rem;
}

.map-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: rgba(255,255,255,0.1);
}

.footer-logo .logo-text {
    color: white;
}

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

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

.footer-column h4 {
    color: white;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

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

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 1.25rem 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--primary);
}

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

.page-header {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    text-align: center;
}

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

.page-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

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

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

.about-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.intro-block {
    flex: 1 1 400px;
}

.intro-block h2 {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

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

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

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

.value-card {
    flex: 1 1 400px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.value-number {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

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

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

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

.timeline-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

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

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

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

.team-card {
    flex: 1 1 220px;
    max-width: 280px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
}

.team-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

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

.team-role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

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

.stat-block {
    flex: 1 1 200px;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.about-cta {
    padding: 5rem 1.5rem;
    text-align: center;
}

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

.about-cta h2 {
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-overview {
    padding: 4rem 1.5rem;
    background: var(--bg-alt);
}

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

.overview-content h2 {
    margin-bottom: 1rem;
}

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

.overview-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.overview-list li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

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

.service-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-header {
    margin-bottom: 2.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-info {
    flex: 1 1 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-block {
    flex: 1 1 220px;
}

.info-block h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.info-block ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.info-block li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.info-block p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.salary-range {
    margin-top: 1rem;
    font-weight: 500;
    color: var(--success) !important;
}

.service-meta {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-card {
    background: var(--bg);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.service-detail.alt-bg .meta-card {
    background: white;
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.meta-value {
    display: block;
    font-weight: 500;
    color: var(--text);
}

.meta-value.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.meta-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05)) !important;
    border-color: var(--primary) !important;
}

.service-cta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.pricing-summary {
    padding: 5rem 1.5rem;
    background: var(--bg-dark);
}

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

.pricing-container h2 {
    color: white;
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pricing-row {
    display: flex;
}

.pricing-header {
    background: var(--secondary);
    color: white;
}

.pricing-cell {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    min-width: 120px;
}

.pricing-header .pricing-cell {
    font-weight: 600;
}

.pricing-row:not(.pricing-header) {
    border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-top: 1.5rem;
}

.services-cta {
    padding: 5rem 1.5rem;
    text-align: center;
}

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

.services-cta h2 {
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 1.5rem 5rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-card {
    flex: 1 1 280px;
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card address {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-email {
    color: var(--primary);
    font-weight: 500;
    word-break: break-all;
}

.contact-email.secondary {
    margin-top: 1rem;
}

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

.hours-list {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-directions {
    padding: 5rem 1.5rem;
    background: var(--bg-alt);
}

.directions-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.directions-content {
    flex: 1 1 400px;
}

.directions-content h2 {
    margin-bottom: 2rem;
}

.directions-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-method h4 {
    margin-bottom: 0.5rem;
}

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

.directions-map {
    flex: 1 1 400px;
}

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

.contact-faq .faq-container {
    max-width: 1000px;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.faq-card {
    flex: 1 1 400px;
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.faq-card h4 {
    margin-bottom: 0.75rem;
}

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

.faq-card a {
    color: var(--primary);
}

.contact-cta {
    padding: 5rem 1.5rem;
    background: var(--bg-alt);
    text-align: center;
}

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

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

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

.thanks-page {
    padding: 8rem 1.5rem 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

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

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

.thanks-details {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.thanks-details p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.thanks-details .service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 500;
}

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

.thanks-next h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: none;
}

.next-steps li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.next-steps .step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.next-steps .step-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.next-steps .step-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

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

.meanwhile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.meanwhile-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition);
}

.meanwhile-card:hover {
    background: var(--primary);
    color: white;
}

.meanwhile-card .card-icon svg {
    width: 24px;
    height: 24px;
}

.legal-page {
    padding: 8rem 1.5rem 5rem;
}

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

.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-section h2 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

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

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

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-section address {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

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

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

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

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

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

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

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

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        padding-top: 6rem;
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 600px;
    }

    .pricing-table {
        display: block;
    }

    .pricing-row {
        min-width: 500px;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta .btn-sticky {
        width: 100%;
    }

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

    .service-meta {
        flex: 1 1 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .meta-card {
        flex: 1 1 140px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .trust-logos {
        gap: 1rem;
    }

    .trust-logo {
        font-size: 0.8125rem;
    }

    .programmes-grid,
    .testimonials-grid,
    .instructors-grid,
    .team-grid {
        gap: 1rem;
    }

    .programme-card,
    .testimonial-card,
    .value-card {
        padding: 1.5rem;
    }

    .enroll-form {
        padding: 1.5rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .cookie-table {
        font-size: 0.8125rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}
