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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1B1F3B;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    overflow-x: hidden;
}

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

/* Header Section */
.hero {
    background: linear-gradient(135deg, #1B1F3B 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 205, 41, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.accent-line {
    width: 100px;
    height: 4px;
    background: #ffcd29;
    margin: 0 auto 30px;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.6s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #1B1F3B;
    margin-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffcd29;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1B1F3B;
}

.about-text p {
    margin-bottom: 20px;
}

.highlight {
    color: #ffcd29;
    font-weight: bold;
    background: linear-gradient(120deg, #ffcd29 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(27, 31, 59, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    /* transform: scale(1.05); */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27, 31, 59, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 205, 41, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 31, 59, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #1B1F3B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(253, 253, 253, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1B1F3B;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1B1F3B 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    padding: 20px;
}

.stat-num {
    font-size: 3rem;
    font-weight: bold;
    color: #ffcd29;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: #ffcd29;
    color: #1B1F3B;
    padding: 60px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #1B1F3B;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(27, 31, 59, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(27, 31, 59, 0.4);
}
/* Rules Section */
.rules-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.rules-section .section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1B1F3B;
}

.rules-list {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

.rules-list li {
    background: white;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 6px solid #ffcd29;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section .section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1B1F3B;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #fefefe;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(27, 31, 59, 0.07);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #1B1F3B;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Tweaks */
@media (max-width: 480px) {
    .rules-section .section-heading,
    .faq-section .section-heading {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

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