/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
} */

 .header-section1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-section1::before {
    content: '🌟';
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    top: -20px;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.header-section1::after {
    content: '🎨';
    position: absolute;
    font-size: 80px;
    opacity: 0.1;
    bottom: -10px;
    right: 10%;
    animation: float 4s ease-in-out infinite;
} 

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.category-badge {
    display: inline-block;
    background: white;
    color: #f5576c;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.subtitle {
    color: white;
    font-size: 22px;
    font-weight: 600;
}

.content-section {
    padding: 40px;
}

.theme-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 4px dashed #ff6b6b;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.theme-box h2 {
    color: #e74c3c;
    font-size: 32px;
    margin: 0;
}
/* 
.section-title {
    color: #667eea;
    font-size: 32px;
    font-weight: bold;
    margin: 30px 0 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
} */

.info-card {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.award-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateX(10px);
}

.award-icon {
    font-size: 40px;
    margin-right: 20px;
}

.award-text {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.talent-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.steps-container {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.step-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
}

.faq-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.faq-answer {
    padding: 20px;
    display: none;
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    background: #f8f9fa;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.cta-button {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin: 30px auto;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.6);
}

.button-container {
    text-align: center;
    margin: 40px 0;
}

.highlight-box {
    background: #fff3cd;
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: #856404;
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .talent-grid {
        grid-template-columns: 1fr;
    }
}