/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: #2e3655;
    line-height: 1.3;
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

a {
    color: #2e3655;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c847a7;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #c847a7;
    color: white !important;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #2e3655;
    border: 1px solid #2e3655;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2e3655;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 20px;
    font-weight: 800;
    color: #2e3655;
    letter-spacing: 1px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 25px;
}

.desktop-nav ul li a {
    color: #2e3655;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.desktop-nav ul li a:hover {
    color: #c847a7;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2e3655;
    margin-bottom: 5px;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #2e3655;
    z-index: 200;
    padding: 20px;
    transition: right 0.3s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-nav .logo a {
    color: white;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav nav ul {
    list-style: none;
}

.mobile-nav nav ul li {
    margin-bottom: 20px;
}

.mobile-nav nav ul li a {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: #2e3655;
    color: white;
    padding: 100px 0;
    background-image: url(./assets/hero-bg.png);
    background-size: cover;
    background-position: center;
}

.hero h1 {
    color: white;
    margin-bottom: 40px;
    font-size: 42px;
}

.hero-content {
    max-width: 800px;
}

.hero-content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.7;
}

/* Reinvention Section */
.reinvention {
    background-color: #fff;
}

.reinvention-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.reinvention-text {
    flex: 1;
}

.reinvention-image {
    flex: 1;
}

.reinvention-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Six Paths Section */
.six-paths {
    background-color: #f8f9fd;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.path-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.path-item h3 {
    color: #2e3655;
    margin-bottom: 15px;
}

/* Career Section */
.career {
    background-color: #fff;
}

.career-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.career-text {
    flex: 1;
}

.career-image {
    flex: 1;
}

.career-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-text h3 {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    margin-top: -15px;
    margin-bottom: 25px;
}

/* Courses Section */
.courses {
    background-color: #f8f9fd;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-card h3 {
    color: #2e3655;
    margin-bottom: 15px;
}

.course-details {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.course-price {
    font-weight: 700;
    color: #2e3655;
}

.course-price span {
    color: #c847a7;
    font-size: 24px;
}

/* Location Section */
.location {
    background-color: #fff;
}

.location h3 {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    margin-top: -15px;
    margin-bottom: 25px;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.location-text {
    flex: 1;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Platform Section */
.platform {
    background-color: #f8f9fd;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-item h3 {
    color: #2e3655;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background-color: #2e3655;
    color: white;
}

.contact h2, .contact h3 {
    color: white;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

form {
    flex: 2;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.contact-info {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Footer Section */
footer {
    background-color: #1f2537;
    color: white;
    padding: 30px 0;
}

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

.footer-links a {
    color: white;
    margin-right: 20px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #c847a7;
}

.footer-copyright p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2e3655;
    color: white;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
}

.cookie-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

#configureCookies {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

#configureCookies:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .paths-grid, .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .reinvention-content, .career-content, .location-content {
        flex-direction: column;
    }
    
    .reinvention-image, .career-image, .location-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .paths-grid, .courses-grid, .platform-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}

.thank-section {
    background: #3A3F69;
    color: white;
}

.thank-section h2,
.thank-section h3,
.thank-section h1 {
    color: white;
}

.thank-section .contact-info {
    margin-top: 20px;
}