* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: auto;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: auto;
}

.hero-image {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin: 10px;
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow: auto;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }
    
    .hero-image {
        position: relative;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100vh;
        object-fit: contain;
        object-position: top center;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        padding-bottom: 50px;
    }
    
    .hero-content {
        padding: 40px 15px;
        margin-top: 20vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        position: relative;
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100vh;
        object-fit: contain;
        object-position: top center;
    }
    
    .hero-overlay {
        padding-bottom: 30px;
    }
    
    .hero-content {
        margin-top: 15vh;
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .cta-button {
        max-width: 280px;
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

.page-sponsors{
    background: black;
    text-align: center;
}