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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-background.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.left-content {
    flex: 1;
    padding-right: 20px;
}

.left-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e3a8a;
}

.left-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 20px 0;
    color: #333;
}

/* Requirements Box */
.requirements-box {
    background: #dc2626;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.requirements-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.requirements-box ul {
    list-style: none;
}

.requirements-box li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.requirements-box li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 8px;
}

/* Info Boxes */
.info-box {
    background: #d1fae5;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #10b981;
}

.info-box p {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* Media Logos */
.media-logos {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px 0;
    flex-wrap: wrap;
}

.logo-row span {
    font-weight: bold;
    color: #666;
    font-size: 0.9rem;
    padding: 5px 10px;
}

/* Right Content - Form */
.right-content {
    flex: 1;
    position: sticky;
    top: 20px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.1;
}

.form-container h2 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.5;
}

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

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

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

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.submit-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    padding: 25px 50px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: #dc2626;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .left-content {
        padding-right: 0;
    }
    
    .right-content {
        position: static;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .logo-row {
        justify-content: center;
        gap: 10px;
    }
    
    .logo-row span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .left-content h2 {
        font-size: 1.5rem;
    }
    
    .requirements-box {
        padding: 20px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
}

