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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.primary-btn {
    background-color: #F37335;
    color: white;
}

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

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

.secondary-btn:hover {
    background-color: rgba(243, 115, 53, 0.1);
}

.center-btn {
    display: block;
    margin: 40px auto;
    max-width: 250px;
    text-align: center;
}

/* Header Styles */
header {
    background-color: #222;
    color: white;
    padding: 10px 0;
}

.main-page {
    padding: 5px 20px;
    color: #aaa;
    font-size: 14px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #F37335;
}

.nav-links a {
    margin-left: 20px;
    font-size: 14px;
}

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

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

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Knowledge Section */
.knowledge {
    padding: 80px 0;
    background-color: #fff;
}

.knowledge-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.knowledge-header h2 {
    color: #F37335;
    font-size: 36px;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-box {
    flex: 1 1 220px;
    max-width: 270px;
    margin-bottom: 30px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-box h3 {
    color: #F37335;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Business Image Section */
.business-image {
    padding: 0;
}

.full-width-img {
    width: 100%;
    display: block;
    border-radius: 15px;
    overflow: hidden;
}

/* Evolution Section */
.evolution {
    padding: 80px 0;
}

.evolution-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.evolution-image {
    flex: 1 1 300px;
}

.evolution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

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

.evolution-content h2 {
    color: #F37335;
    font-size: 36px;
    margin-bottom: 20px;
}

.evolution-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.evolution-box {
    background-color: #F37335;
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.evolution-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Practical Learning Section */
.practical-learning {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.learning-header {
    text-align: left;
    max-width: 900px;
    margin-bottom: 60px;
}

.learning-header h2 {
    color: #F37335;
    font-size: 36px;
    margin-bottom: 20px;
}

.learning-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.learning-box {
    margin-bottom: 30px;
}

.learning-icon {
    margin-bottom: 20px;
}

.learning-icon img {
    width: 60px;
    height: 60px;
}

.learning-box h3 {
    color: #F37335;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Guided Programs Section */
.guided-programs {
    padding: 80px 0;
}

.guided-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.guided-image {
    flex: 1 1 300px;
}

.guided-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

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

.guided-content h2 {
    color: #F37335;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #222;
    color: white;
    background-image: url('./assets/contact-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 5px;
}

form {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

textarea {
    border-radius: 25px;
    min-height: 120px;
    resize: vertical;
}

form button {
    margin-top: 15px;
    align-self: center;
    width: 100%;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #fff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #F37335;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-copyright {
    color: #777;
    font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    z-index: 1000;
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

.cookie-icon {
    margin-bottom: 15px;
}

.cookie-icon img {
    width: 40px;
    height: 40px;
}

.cookie-popup h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cookie-popup p {
    font-size: 14px;
    margin-bottom: 15px;
}

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

.cookie-buttons button {
    padding: 12px 20px;
    flex: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links a {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .evolution-wrapper, .guided-wrapper {
        flex-direction: column;
    }

    .evolution-boxes {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
    }
    
    .features, .learning-features {
        gap: 15px;
    }
    
    .feature-box, .learning-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .knowledge-header h2, .evolution-content h2, .learning-header h2, .guided-content h2, .contact-header h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links a {
        margin: 0;
    }
}

/* Mobile cookie popup styles */
@media (max-width: 600px) {
    .cookie-popup {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 15px 15px 0 0;
    }
}

html {
    scroll-behavior: smooth;
}

.thank {
    background-image: url('./assets/thank-bg.png');
}

.main-section {
    padding: 80px 0;
}

.main-section h1 {
    text-transform: uppercase;
    color: #F37335;
    font-size: 36px;
}