/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

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

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

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

/* Header */
.header {
    background: linear-gradient(to right, #2c3e8f, #1a237e);
    color: white;
    padding: 15px 0;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #2c3e8f, #1a237e);
    color: white;
    padding: 60px 0;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.hero-content {
    max-width: 600px;
    margin-left: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #2c3e8f;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

/* Partners Section */
.partners {
    padding: 40px 0;
    text-align: center;
}

.partners h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.partners p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    height: 60px;
    margin: 0 15px;
}

/* Career Section */
.career {
    background: linear-gradient(to right, #2c3e8f, #1a237e);
    color: white;
    padding: 60px 0;
}

.career-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.career h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.career p {
    margin-bottom: 15px;
}

/* Courses Section */
.courses {
    padding: 60px 0;
    text-align: center;
}

.courses h2 {
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    text-align: left;
}

.course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.course-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.course-card p {
    font-size: 0.95rem;
}

/* News Section */
.news {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.news-card p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Signup Section */
.signup {
    padding: 60px 0;
    text-align: center;
}

.signup h2 {
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c3e8f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: #2c3e8f;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-consent p {
    margin-bottom: 20px;
    max-width: 800px;
    text-align: center;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

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

.info-btn {
    background-color: #f0f0f0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .partner-logo {
        height: 40px;
        margin: 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

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

    .cookie-btn {
        width: 100%;
    }
}