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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #484848 0%, #4d4d4d 100%);
    min-height: 100vh;
    padding: 20px;
}

#demo {
    text-align: center;
    font-size: 1.5em;
    margin-top: 0px;
} 

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #f4f0f5 0%, #c5acdd 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.header .logo {
    max-width: 50%;
    height: auto;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: rgb(96, 11, 152);
}

.header .subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.content {
    padding: 40px;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h2 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.info-card h3 {
    color: #764ba2;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    font-size: 1.1rem;
    color: #555;
}

.date-time {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.date-time .info-card {
    flex: 1;
    min-width: 200px;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.price-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.instructions {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.instructions h3 {
    color: #856404;
    margin-bottom: 15px;
}

.instructions ol {
    margin-left: 20px;
    color: #856404;
}

.instructions li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

.footer {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    color: #666;
    border-top: 1px solid #dee2e6;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.5s;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    padding: 15px 0 0 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #667eea;
}

@media (max-width: 768px) {
    .carousel-container {
        height: 250px;
    }

    .carousel-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header {
        padding: 40px 20px;
    }

    .content {
        padding: 20px;
    }

    .date-time {
        flex-direction: column;
    }

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