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

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

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

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

/* Header & Navigation */
header {
    background-color: #0033cc;
    color: white;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

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

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 60, 0.8), rgba(0, 0, 60, 0.8)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 5%;
    text-align: left;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 700px;
}

.btn {
    display: inline-block;
    background-color: #0033cc;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0025a0;
}

/* Courses Section */
.courses {
    padding: 60px 5%;
    text-align: center;
    background-color: #02033d;
    color: white;
}

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

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

.course-card {
    padding: 20px;
    text-align: center;
}

.course-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
}

.course-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.course-card p {
    font-size: 14px;
}

/* About Section */
.about {
    padding: 60px 5%;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-stats {
    margin-top: 30px;
}

.stat-item {
    margin-bottom: 10px;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
}

/* Feature Icons Section */
.feature-icons {
    padding: 60px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

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

.icon-card {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.icon-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.icon-card p {
    font-size: 14px;
}

/* Articles Section */
.articles {
    padding: 60px 5%;
    background-color: white;
}

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

.article-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.article-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Contact Form */
.contact {
    padding: 60px 5%;
    background-color: #02033d;
    color: white;
    text-align: center;
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    grid-column: span 2;
    resize: vertical;
}

.submit-btn {
    grid-column: span 2;
    background-color: #0033cc;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #02033d;
    color: white;
    padding: 30px 5%;
    text-align: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

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

.footer-links a {
    margin: 0 15px;
    font-size: 14px;
}

.footer-info {
    font-size: 14px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 500px;
    text-align: center;
    display: none;
}

.cookie-consent p {
    margin-bottom: 20px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.accept-btn {
    background-color: #0033cc;
    color: white;
}

.more-btn {
    background-color: #0033cc;
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    textarea {
        grid-column: span 1;
    }

    .submit-btn {
        grid-column: span 1;
    }

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