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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner img {
    width: 60px;
    margin-bottom: 10px;
}

.cookie-banner h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

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

.cookie-banner .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-banner button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.cookie-banner .accept {
    background-color: #2b0a8f;
    color: white;
}

.cookie-banner .decline {
    background-color: transparent;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #2b0a8f;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

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

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

nav ul li a {
    color: white;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-button {
    background: white;
    color: #2b0a8f;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-color: #2b0a8f;
    color: white;
    padding: 80px 5%;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

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

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

.hero-button {
    display: inline-block;
    background: white;
    color: #2b0a8f;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.hero-button:hover {
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 80px 5%;
    background: #2b0a8f;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-image {
    overflow: hidden;
    border-radius: 10px;
}

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

.feature-content p {
    margin-bottom: 25px;
}

/* Expertise Section */
.expertise {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.expertise-content p {
    margin-bottom: 15px;
}

.expertise-image {
    border-radius: 10px;
    overflow: hidden;
}

/* Courses Section */
.courses {
    padding: 80px 5%;
    background: #2b0a8f;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.courses-image {
    border-radius: 10px;
    overflow: hidden;
}

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

.courses-content p {
    margin-bottom: 25px;
}

.courses-button {
    display: inline-block;
    background: white;
    color: #2b0a8f;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.courses-button:hover {
    transform: translateY(-3px);
}

/* Blog Section */
.blog {
    padding: 80px 5%;
}

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

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

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

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

.blog-card-content {
    padding: 20px;
}

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

.blog-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 60px 5%;
}

.faq h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background: #f0f0f0;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #2b0a8f;
}

.accordion-header:hover {
    background: #e0e0e0;
}

.accordion-content {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    padding: 20px;
    max-height: 200px;
}

/* Resources Section */
.resources {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.resources-content p {
    margin-bottom: 25px;
}

.resources-button {
    display: inline-block;
    background: #2b0a8f;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.resources-button:hover {
    transform: translateY(-3px);
}

.resources-image {
    border-radius: 10px;
    overflow: hidden;
}

/* Sign Up Section */
.signup {
    padding: 60px 5%;
    background: #f5f5f5;
    text-align: center;
}

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

.signup p {
    max-width: 600px;
    margin: 0 auto 30px;
}

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

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

.signup-form button {
    width: 100%;
    padding: 15px;
    background: #2b0a8f;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-form button:hover {
    background: #1f0769;
}

/* Footer */
footer {
    background: #2b0a8f;
    color: white;
    padding: 40px 5% 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .features, .expertise, .courses, .resources {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-image, .expertise-image, .courses-image, .resources-image {
        margin-bottom: 30px;
        order: -1;
    }
}

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

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

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

    .footer-content {
        flex-direction: column;
    }
}