body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4b0082, #8a2be2);
    color: white;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #ff00de;
}
.title {
    font-size: 64px;
    font-weight: bold;
    text-align: center;
    margin: 40px 0;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de, 0 0 150px #ff00de;
}
.subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
}
.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
}
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-item.active {
    opacity: 1;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.carousel-caption h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}
.carousel-caption p {
    margin: 0;
    font-size: 16px;
}
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.carousel-dot.active {
    background-color: white;
}
.section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}
.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.section p {
    font-size: 16px;
    line-height: 1.6;
}
.percentage {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    display: inline-block;
    margin-right: 10px;
}
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}