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

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

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

header {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s;
}

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

header h1 {
    font-size: 24px;
    font-weight: bold;
}

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

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

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #3B82F6;
}

.hero {
    background: linear-gradient(to right, #3B82F6, #7C3AED);
    color: white;
    text-align: center;
    padding: 100px 0 50px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h2 .highlight {
    display: block;
    font-size: 40px;
    color: #FDE68A;
}

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

.cta-button {
    display: inline-block;
    background-color: white;
    color: #3B82F6;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #E5E7EB;
}

.carousel {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.about, .contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p, .contact p {
    margin-bottom: 30px;
}

.qr-code {
    max-width: 280px;
    display: block;
    margin: 0 auto;
}

.about-details {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-details h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3B82F6;
}

.about-details p {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.achievement-img {
    width: 30%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero h2 .highlight {
        font-size: 30px;
    }

    .hero p {
        font-size: 18px;
    }

    .carousel {
        height: 300px;
    }
}
