    .hero-section {
        background: linear-gradient(135deg, #ffd200 0%, #f7a600 100%);
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    /*
    .container {
        max-width:100%;*/
         /* Changed from 1200px to 90% width */
        /*margin: 0 auto;
    }*/
    
    .hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        width: 100%;
    }
    
    .hero-title {
        text-align: left;
        font-size: 30px;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
        padding: 0;
    }

    .n1-hero-title{
        text-align: left;
        font-size: 30px;
        font-weight: 700;
        color: #333333;
        margin-bottom: 5px;
        padding: 0;
        text-transform: uppercase;
    }

    .n2-hero-title{
        text-align: left;
        font-size: 25px;
        font-weight: 700;
        color: #333333;
        margin-bottom: 5px;
        text-transform: capitalize;
        padding: 0;
    }
    .n2-hero-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background-color: #ffffff;
        margin-top: 10px;
    }
    
    /* 
    .form-container {
        flex: 1;
        width: 100%;
        background-color: white; /* Single solid background color */
    /*    border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 25px;
        order: 2;
    }
    
    .form-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }*/
    
    .form-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .form-subtitle {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        border-color: #f7a600;
        outline: none;
    }
    
    .submit-button {
        width: 100%;
        background-color: #333;
        color: white;
        font-size: 16px;
        font-weight: 600;
        padding: 12px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .submit-button:hover {
        background-color: #222;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    .hero-text {
        flex: 1;
        padding: 20px;
        order: 1;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
    }
    
    .highlight {
        font-weight: 600;
        color: #222;
    }
    
    .cta-button {
        display: inline-block;
        background-color: #333;
        color: white;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 30px;
        text-decoration: none;
        margin-top: 25px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    .cta-button:hover {
        background-color: #222;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    .stats-row {
        display: flex;
        justify-content: space-around;
        margin-top: 40px;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .stat-item {
        display: inline-block;
        text-align: center;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 28px;
        font-weight: 700;
        color: #333;
    }
    
    .stat-label {
        font-size: 14px;
        color: #444;
        margin-top: 5px;
    }
    
    
    /* Responsive styles */
    @media (max-width: 992px) {
        .hero-title {
            font-size: 36px;
        }
        
        .hero-description {
            font-size: 16px;
        }
    }
    
    @media (max-width: 768px) {
        .hero-content {
            flex-direction: column;
        }
        
        .form-container {
            order: -1; /* Reset order for mobile - form first */
            max-width: 100%;
            margin-bottom: 20px;
        }
        
        .hero-text {
            order: 2; /* Reset order for mobile - text second */
        }
        
        .hero-title {
            font-size: 30px;
            margin-bottom: 20px;
        }
        
        .hero-description {
            font-size: 16px;
        }
        
        .stats-row {
            margin-top: 30px;
        }
        
        .stat-item {
            min-width: 120px;
            padding: 10px;
        }
        
        .stat-number {
            font-size: 24px;
        }
        
        .stat-label {
            font-size: 12px;
        }
    }
    
    @media (max-width: 480px) {
        .hero-section {
            padding: 30px 15px;
        }
        
        .hero-title {
            font-size: 26px;
            margin-bottom: 15px;
        }
        
        .hero-description {
            font-size: 15px;
        }
        
        .cta-button {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .stats-row {
            display: none; /* Hide stats on mobile */
        }
    }