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

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

/* Header Styles */
.header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand h1 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e74c3c;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.cta-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #c0392b;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Why Professionals Section */
.why-professionals {
    background: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.why-professionals h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Learning Hub Section */
.learning-hub {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 3rem;
}

.hub-content {
    flex: 1;
}

.hub-content h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.hub-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hub-image {
    margin-top: 2rem;
}

.hub-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hub-main-image {
    flex: 1;
}

.hub-main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Courses Section */
.courses-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.courses-section h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.course-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.course-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.course-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.course-card p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.course-btn:hover {
    background: #c0392b;
}

/* Education Platform Section */
.education-platform {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 3rem;
}

.platform-content {
    flex: 1;
}

.platform-content h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.platform-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.platform-features {
    list-style: none;
    margin: 2rem 0;
}

.platform-features li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.platform-features li:before {
    content: "•";
    color: #e74c3c;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.platform-image {
    flex: 1;
}

.platform-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    align-items: flex-start;
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.contact-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: #e74c3c;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    display: none;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
    display: flex;
}

.cookie-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: #2c3e50;
    color: white;
}

.cookie-btn.refuse {
    background: #2c3e50;
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .learning-hub {
        flex-direction: column;
        padding: 3rem 1rem;
    }
    
    .education-platform {
        flex-direction: column-reverse;
        padding: 3rem 1rem;
    }
    
    .contact-section {
        flex-direction: column;
        padding: 3rem 1rem;
    }
    
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .why-professionals h2,
    .courses-section h2,
    .learning-hub h2,
    .education-platform h2,
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cookie-content h3 {
        font-size: 1.5rem;
    }
    
    .cookie-popup {
        padding: 1.5rem;
    }
}
img{
    opacity: 1 !important;
}