/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
}

/* Hero Section */
.hero {
    background-color: #0056b3;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Legal Link Styles */
.legal-link-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.legal-link {
    color: #ffffff;
    background-color: #ffd700;
    color: #000000;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.legal-link:hover {
    background-color: #ffed4e;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.logo-star {
    font-size: 3rem;
    color: #ffd700;
}

.brand-name {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0;
    color: #ffd700;
}

.hero-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-header-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: #e84c3d;
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 6px;
}

.image-header-bar span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.image-header-bar span:nth-child(1) { background-color: #f1c40f; }
.image-header-bar span:nth-child(2) { background-color: #2ecc71; }
.image-header-bar span:nth-child(3) { background-color: #3498db; }

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.heart-bubble {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #0056b3;
}

.heart-bubble::before {
    content: '♥';
}

.heart-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-left: 40px;
}

.hero-heading {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.hero-button {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.hero-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Explore Sections */
.explore {
    padding: 60px 20px;
    background-color: #ffffff;
    position: relative;
}

.explore::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 4rem;
    transform: rotate(15deg);
    color: #0056b3;
    opacity: 0.5;
}

.explore-content {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-heading {
    font-size: 2.5rem;
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.explore-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #000000;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-card {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:active {
    transform: translateY(0);
}

.feature-card.yellow {
    background-color: #ffd700;
    color: #000;
}

.feature-card.blue {
    background-color: #0056b3;
    color: #ffffff;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.feature-descriptions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-desc {
    width: 150px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
}

.feature-desc.blue {
    background-color: #0056b3;
    color: #ffffff;
}

.feature-desc.yellow {
    background-color: #ffd700;
    color: #000000;
}

/* Comments Section */
.comments {
    background-color: #0056b3;
    color: #ffffff;
    padding: 60px 20px;
    position: relative;
}

.comments::before {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 4rem;
    color: #ffd700;
}

.comments-content {
    max-width: 1200px;
    margin: 0 auto;
}

.comments-heading {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #ffffff;
    color: #000000;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #0056b3;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-author::before {
    content: '|';
    color: #0056b3;
}

/* Courses Section */
.courses {
    padding: 60px 20px;
    background-color: #f5f5f5;
    position: relative;
}

.courses::after {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 4rem;
    color: #0056b3;
    opacity: 0.5;
}

.courses-content {
    max-width: 1200px;
    margin: 0 auto;
}

.courses-heading {
    font-size: 2.5rem;
    color: #0056b3;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.course-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.course-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.course-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.course-title {
    font-size: 1.2rem;
    color: #0056b3;
    text-align: center;
    margin: 15px 0;
    font-weight: bold;
}

.course-description {
    font-size: 0.9rem;
    color: #333;
    padding: 0 15px 20px;
    text-align: center;
    line-height: 1.5;
}

.courses-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    background-color: #0056b3;
    color: #ffffff;
    padding: 60px 20px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
}

.contact-item a:hover {
    text-decoration: none;
    border-bottom: 2px solid #ffffff;
}

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 2px solid #ffffff;
    padding-top: 30px;
    margin-top: 20px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: block;
}

#cookie-banner.hidden {
    display: none;
}

#cookie-banner p {
    margin: 0 0 10px 0;
}

#cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
}

#cookie-banner button {
    background-color: #ffd700;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
}

#cookie-banner .decline-cookies {
    background-color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation and Header Adjustments */
    .language-switcher {
        top: 10px;
        left: 10px;
        flex-direction: column;
        gap: 5px;
    }
    
    .legal-link-container {
        top: 10px;
        right: 10px;
    }
    
    .legal-link,
    .language-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 15px 40px;
    }
    
    .hero-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .heart-bubble {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 15px;
        right: -15px;
    }
    
    /* Content Sections */
    .feature-cards,
    .feature-descriptions,
    .testimonials,
    .course-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .feature-card,
    .feature-desc {
        width: 200px;
    }
    
    .testimonial {
        max-width: 100%;
        min-width: unset;
        padding: 20px;
    }
    
    .course-card {
        width: 90%;
        max-width: 300px;
    }
    
    .explore,
    .comments,
    .courses,
    .contact {
        padding: 40px 15px;
    }
    
    .explore::after,
    .comments::before,
    .courses::after {
        font-size: 3rem;
        right: 10px;
        top: 10px;
    }
    
    /* Typography */
    .explore-heading,
    .comments-heading,
    .courses-heading,
    .contact-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .hero-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .explore-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .course-title {
        font-size: 1.1rem;
    }
    
    .course-description {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Header and Logo */
    .hero {
        padding: 90px 10px 40px;
    }
    
    .logo-container {
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .logo-star {
        font-size: 1.4rem;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    /* Images and Layout */
    .hero-image-container {
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
        max-width: 280px;
        border-width: 8px;
    }
    
    .heart-bubble {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 8px;
        right: -8px;
    }
    
    /* Decorative Elements */
    .explore::after,
    .comments::before,
    .courses::after {
        font-size: 2.5rem;
        right: 10px;
        top: 8px;
    }
    
    /* Typography */
    .explore-heading,
    .comments-heading,
    .courses-heading,
    .contact-heading {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .hero-heading {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .explore-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    /* Cards and Features */
    .feature-card,
    .feature-desc {
        width: 180px;
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    /* Testimonials and Courses */
    .testimonial {
        padding: 15px;
    }
    
    .testimonial-avatar {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    .course-card {
        width: 95%;
        max-width: 260px;
    }
    
    .course-image {
        height: 130px;
    }
    
    .course-title {
        font-size: 1rem;
        margin: 12px 0;
    }
    
    .course-description {
        font-size: 0.8rem;
        padding: 0 12px 15px;
    }
    
    /* Contact Section */
    .contact-item {
        font-size: 1rem;
        margin-bottom: 12px;
        line-height: 1.7;
    }
    
    .contact-logo {
        padding-top: 25px;
        gap: 12px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    /* Button and Interactive Elements */
    .hero-button {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .language-btn,
    .legal-link {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}