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

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

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

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

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

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

img {
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #444;
}

/* Header */
header {
    padding: 20px 0;
    background-color: #fff;
}

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

.logo a {
    color: #E95420;
    font-weight: 700;
    font-size: 1.5rem;
}

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

/* Hero Section */
.hero {
    background-color: #E95420;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 30px;
}

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

/* Why Us Section */
.why-us {
    padding: 80px 0;
}

.why-us-content {
    margin-bottom: 40px;
}

.values-list {
    counter-reset: values-counter;
    list-style: none;
}

.values-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.values-list li::before {
    counter-increment: values-counter;
    content: counter(values-counter) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.values-list li strong {
    font-weight: 600;
}

/* Business Network Section */
.business-network {
    padding: 0;
    background-color: #f9f9f9;
}

.network-image {
    height: 300px;
    background-image: url('./assets/business-network.png');
    background-size: cover;
    background-position: center;
    background-color: #000;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background-color: #E95420;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.pie-chart {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.pie-chart img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.3rem;
}

/* Featured Courses Section */
.featured-courses {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.courses-container {
    display: flex;
    margin-bottom: 40px;
    gap: 30px;
}

.courses-list {
    flex: 1;
}

.course {
    margin-bottom: 30px;
}

.course h3 {
    color: #E95420;
}

.courses-image {
    flex: 1;
    background-image: url('./assets/courses-image.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    min-height: 300px;
    max-width: 50%;
}

html {
    scroll-behavior: smooth;
}

h1 {
    text-transform: uppercase;
}

/* Stats Section */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1;
    padding: 0 15px;
}

.stat-item h3 {
    color: #E95420;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #E95420;
    color: #fff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: #E95420;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 10px;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.8rem;
    color: #777;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-consent.show {
    display: flex;
}

.cookie-icon {
    width: 80px;
    height: 80px;
    background-color: #E95420;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cookie-icon img {
    width: 50%;
    height: 50%;
}

.cookie-consent h3 {
    margin-bottom: 15px;
}

.cookie-consent p {
    max-width: 800px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.btn-cookie {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    margin: 5px;
    transition: background-color 0.3s ease;
    width: 300px;
}

.accept {
    background-color: #E95420;
    color: #fff;
}

.accept:hover {
    background-color: #c84518;
}

.reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #555;
}

.reject:hover {
    background-color: #333;
}

/* Main page heading */
header + .container h2 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-container {
        flex-direction: column;
    }
    
    .courses-image {
        min-height: 250px;
        max-width: 100%;
    }
    
    .stats-grid {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 33.33%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .why-us, .services, .featured-courses, .stats, .contact {
        padding: 60px 0;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .nav-links a {
        margin: 0 10px;
    }
}