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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.main-header {
    background: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #e8eef3;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.main-nav a:hover {
    color: #4a90e2;
}

.ad-notice {
    font-size: 11px;
    color: #95a5a6;
    border-left: 1px solid #34495e;
    padding-left: 20px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2c3e50;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(26, 35, 50, 0.75);
    width: 100%;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
    max-width: 650px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.values-section {
    padding: 100px 0;
    background: #ffffff;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #f8f9fa;
    border-left: 4px solid #4a90e2;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a2332;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.programmes-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.programmes-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a2332;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 60px;
}

.programme-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.programme-item {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    align-items: stretch;
}

.programme-visual {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
    min-height: 320px;
}

.programme-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.programme-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a2332;
}

.programme-details p {
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.programme-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.programme-meta span {
    font-size: 15px;
    color: #7f8c8d;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    align-self: flex-start;
    padding: 14px 30px;
    background: #1a2332;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.enrollment-section {
    padding: 100px 0;
    background: #ffffff;
}

.enrollment-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a2332;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #1a2332;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #95a5a6;
}

.footer-column a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.email-text {
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2332;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #ecf0f1;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-cookie {
    background: #4a90e2;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.btn-cookie.secondary {
    background: transparent;
    border: 2px solid #95a5a6;
    color: #95a5a6;
}

.btn-cookie.secondary:hover {
    background: rgba(149, 165, 166, 0.1);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .programme-item {
        flex-direction: column;
    }

    .programme-visual {
        flex: 0 0 250px;
    }

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

    .main-nav {
        gap: 15px;
    }
}