:root {
    --primary-blue: #0066cc;
    --secondary-blue: #003366;
    --accent-blue: #0099ff;
    --light-blue: #e6f3ff;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

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

nav ul li a {
    text-decoration: none;
    color: var(--secondary-blue);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('https://res.cloudinary.com/dn2kwhwgz/image/upload/v1728974855/hwfjlffgh2cymuvmwges.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #e6f3ff 0%, #b3d9ff 100%);
    padding: 5rem 0;
    text-align: center;
}

.about h2 {
    color: var(--secondary-blue);
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.text-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-container iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 5rem 0;
    text-align: center;
}

.faq h2 {
    color: var(--secondary-blue);
    margin-bottom: 2rem;
}

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

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

.accordion-header {
    width: 100%;
    padding: 1rem;
    background-color: var(--light-blue);
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #d1e8ff;
}

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

.accordion-content p {
    padding: 1rem;
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.contact h2 {
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
}

.info-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.email-protection {
    color: white;
    text-decoration: none;
}

.qr-code {
    width: 200px;
    margin: 2rem auto;
}

.qr-code img {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: var(--secondary-blue);
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    nav ul {
        display: none;
    }

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

    .video-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .contact-info {
        flex-direction: column;
    }
}
