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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    color: #333;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: white;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
    padding: 80px 40px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    margin-bottom: 30px;
}

.hero-subtitle strong {
    color: #667eea;
    font-weight: 600;
}

.hero-cta-btn {
    display: inline-block;
    margin-top: 0;
    padding: 16px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    background: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.12);
    border-color: #667eea;
}

.benefit-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    width: 56px;
    height: 56px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 6px;
}

.benefit-card p {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

/* Mobile App Feature Section */
.mobile-app-feature {
    background: white;
    padding: 80px 40px;
    border-radius: 0;
    margin-bottom: 0;
}

.mobile-app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-app-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mobile-app-text p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.mobile-app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-app-image img {
    max-width: 320px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Requirements Section */
.requirements {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.requirements-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 35px;
}

.requirements-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.requirement-item svg {
    flex-shrink: 0;
    background: white;
    border-radius: 50%;
    padding: 4px;
}

.requirement-item span {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

/* Application Form */
.application {
    background: #f8f9fa;
    padding: 60px 40px 80px;
    border-radius: 0;
    box-shadow: none;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.form-header i {
    font-size: 32px;
    color: #667eea;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
}

.form-subtitle {
    text-align: center;
    font-size: 16px;
    color: #718096;
    margin-bottom: 40px;
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.required-label {
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 16px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f7fafc;
    flex: 1;
    min-height: 56px;
}

.radio-option:hover {
    border-color: #cbd5e0;
    background: white;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    margin-right: 14px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: #667eea;
    background: #667eea;
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option input[type="radio"]:checked ~ span:last-child {
    font-weight: 600;
    color: #667eea;
}

.radio-option span:last-child {
    font-size: 16px;
}

/* Checkbox Buttons */
.checkbox-group {
    display: flex;
    gap: 15px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 16px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f7fafc;
    flex: 1;
    min-height: 56px;
}

.checkbox-option:hover {
    border-color: #cbd5e0;
    background: white;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    margin-right: 14px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-custom {
    border-color: #667eea;
    background: #667eea;
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    top: 3px;
    left: 7px;
}

.checkbox-option input[type="checkbox"]:checked ~ span:last-child {
    font-weight: 600;
    color: #667eea;
}

.checkbox-option span:last-child {
    font-size: 16px;
}



/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 35px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

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

/* Form Disclaimer */
.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.form-disclaimer .privacy-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.form-disclaimer .privacy-link:hover {
    text-decoration: underline;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.success-message.hidden {
    display: none;
}

.success-content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.4s ease;
}

.success-content i {
    font-size: 80px;
    color: #48bb78;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.success-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.reset-btn {
    padding: 12px 32px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.reset-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 50px 25px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta-btn {
        padding: 14px 36px;
        font-size: 16px;
    }

    .hero-image {
        height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        max-height: none;
        height: auto;
        width: 100%;
        object-fit: cover;
        object-position: center 35%;
    }

    .benefits {
        padding: 35px 20px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .benefit-card {
        padding: 18px 10px;
    }

    .benefit-icon svg {
        width: 44px;
        height: 44px;
    }

    .benefit-card h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .mobile-app-feature {
        padding: 40px 20px;
    }

    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-app-text h2 {
        font-size: 24px;
        text-align: center;
    }

    .mobile-app-text p {
        font-size: 16px;
        text-align: center;
    }

    .mobile-app-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .requirements {
        padding: 40px 25px;
    }

    .requirements-title {
        font-size: 26px;
    }

    .requirement-item {
        padding: 16px 20px;
    }

    .requirement-item span {
        font-size: 16px;
    }

    .application {
        padding: 40px 25px 60px;
    }

    .application-form {
        padding: 30px 25px;
    }

    .form-header h2 {
        font-size: 26px;
    }

    .radio-group {
        flex-direction: row;
        gap: 12px;
    }

    .checkbox-group {
        flex-direction: row;
        gap: 12px;
    }

    .success-content {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-image {
        height: 250px;
    }

    .hero-image img {
        object-position: center 35%;
    }

    .benefits {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit-card {
        padding: 16px 12px;
    }

    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }

    .benefit-card h3 {
        font-size: 14px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .mobile-app-feature {
        padding: 35px 15px;
    }

    .mobile-app-text h2 {
        font-size: 22px;
    }

    .mobile-app-text p {
        font-size: 15px;
    }

    .mobile-app-image img {
        max-width: 240px;
    }
}
