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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #F7DC6F 0%, #F4D03F 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #2E8B57;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img{
    /* Default styling for the logo image on larger screens */
    max-width: 50px;
    height: auto;
}

.logo::before {
    margin-right: 10px;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #2E8B57;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1F5F3F;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: #2E8B57;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 50px;
}

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

.step-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #F7DC6F;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F7DC6F 0%, #F4D03F 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.step-card h3 {
    color: #2E8B57;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

/* Why Sponsors Love Us Section */
.sponsors-section {
    background: linear-gradient(135deg, #F7DC6F 0%, #F4D03F 100%);
    padding: 80px 0;
}

.sponsors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #2E8B57;
}

.benefits-list li::before {
    content: "✅";
    margin-right: 15px;
    font-size: 1.2rem;
}

.testimonial {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 5px solid #2E8B57;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial cite {
    color: #2E8B57;
    font-weight: 600;
}

/* Players Section */
.players-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.players-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-mockup {
    text-align: center;
}

.mobile-mockup img {
    max-width: 300px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button-white {
    background: white;
    color: #2E8B57;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Contact Section */
.contact-section {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2E8B57;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7DC6F;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

/* Basic Navbar Styling */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.nav-links {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}

.nav-links a {
padding: 0.5rem 1rem;
text-decoration: none;
color: #008000; /* Green text from your image */
}

/* Hamburger Menu Styling (Hidden by default) */
.menu-toggle {
display: none; /* Hide on desktop */
background: none;
border: none;
cursor: pointer;
}

.hamburger {
width: 25px;
height: 3px;
background-color: #008000;
position: relative;
}

.hamburger::before,
.hamburger::after {
content: '';
position: absolute;
width: 25px;
height: 3px;
background-color: #008000;
}

.hamburger::before {
top: -8px;
}

.hamburger::after {
top: 8px;
}

/* Media Query to show hamburger on mobile */
@media (max-width: 768px) {
.nav-links {
    display: none; /* Hide the full menu on mobile */
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: #ffde59;
}

.nav-links.active {
    display: flex; /* Show the menu when active */
}

.menu-toggle {
    display: block; /* Show the hamburger icon */
}

/* Additional styling to make the menu span full width when open */
.navbar {
    flex-wrap: wrap;
}
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .sponsors-content,
    .players-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .logo img {
        max-width: 50px; /* Adjust the size for smaller screens */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}