/* Header section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

/* Glass effect cards */
.glass-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
}

.service-icon,
.feature-icon {
    font-size: 3rem;
    color: #E879F9;
    margin-bottom: 1rem;
}

/* Section titles */
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
}

/* Timeline styles */
.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: #E879F9;
    border: 4px solid var(--gradient-start);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content h5 {
    color: #E879F9;
    margin-bottom: 1rem;
}

/* FAQ styles */
.faq-item {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-button {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-content.show {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .timeline-line {
        left: 2rem;
    }

    .timeline-dot {
        left: 2rem;
    }

    .timeline-content {
        margin-left: 4rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }

    .glass-card {
        margin-bottom: 1.5rem;
    }
}