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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

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

.btn-cookie {
    padding: 0.65rem 1.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #2980b9;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    background-color: #f8f9fa;
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 6rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.section-container.narrow {
    max-width: 800px;
}

.intro-section {
    background-color: #f8f9fa;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.dark-bg {
    background-color: #2c3e50;
    color: #ffffff;
}

.dark-bg h2 {
    color: #ffffff;
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.content-half {
    flex: 1;
}

.content-half h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.content-half p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
}

.content-half img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    background-color: #34495e;
}

.insight-section {
    background-color: #ecf0f1;
}

.large-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #2c3e50;
}

.courses-section {
    background-color: #ffffff;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.course-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.course-card img {
    width: 100%;
    height: 220px;
    display: block;
    background-color: #f8f9fa;
}

.course-info {
    padding: 1.8rem;
}

.course-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.course-info p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e1e8ed;
}

.duration {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-course {
    width: 100%;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-course:hover {
    background-color: #2980b9;
}

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

.testimonial-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author {
    font-size: 1rem;
    color: #95a5a6;
    font-weight: 600;
}

.enrolment-section {
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.enrolment-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.research-section {
    background-color: #ffffff;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.references {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e1e8ed;
}

.references h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.references ol {
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 1rem;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.light-bg {
    background-color: #fef9e7;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.content-section {
    padding: 5rem 2rem;
}

.content-layout {
    display: flex;
    gap: 3rem;
}

.content-main {
    flex: 2;
}

.content-main h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

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

.content-main p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
}

.content-sidebar {
    flex: 1;
}

.content-sidebar img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    background-color: #f8f9fa;
    position: sticky;
    top: 100px;
}

.values-section {
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-section {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.services-detail-section {
    padding: 3rem 2rem;
}

.service-block {
    margin-bottom: 5rem;
}

.service-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-block.reverse .service-content {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1.2;
}

.service-image {
    flex: 1;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.3rem;
    color: #2c3e50;
}

.service-description {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin-bottom: 1.8rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e1e8ed;
}

.price-display {
    font-size: 1.1rem;
    color: #27ae60;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    background-color: #f8f9fa;
}

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

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.info-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.contact-section {
    padding: 3rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-details {
    flex: 1.3;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.6;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

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

.steps-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.course-info {
    margin-bottom: 2rem;
}

.course-info h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

#course-name-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
}

.support-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-page {
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #34495e;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e1e8ed;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
}

@media (max-width: 968px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .split-content {
        flex-direction: column;
    }

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

    .course-card {
        flex: 1 1 100%;
    }

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

    .service-content {
        flex-direction: column;
    }

    .service-block.reverse .service-content {
        flex-direction: column;
    }

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

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

@media (max-width: 640px) {
    .hero-section h1 {
        font-size: 2rem;
    }

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

    .cookie-content {
        font-size: 0.9rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }
}