* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Notification Popup */
.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #2d3748;
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideIn 0.5s ease-out;
    max-width: 300px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    font-size: 14px;
}

.notification-status {
    font-size: 12px;
    color: #a0aec0;
}

.notification-time {
    font-size: 12px;
    color: #68d391;
}

.notification-verified {
    font-size: 11px;
    color: #a0aec0;
}

.shein-text {
    color: #ff69b4;
    font-weight: bold;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo {
    height: 60px;
    object-fit: contain;
}

.hiring-badge {
    position: absolute;
    right: 0;
    background: #ff69b4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.cta-button:hover {
    background: #e55a9f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* Sections */
.how-to-apply,
.what-youll-do,
.why-section,
.final-cta {
    padding: 80px 0;
}

.how-to-apply {
    background: white;
}

.what-youll-do {
    background: #f8f9fa;
}

.why-section {
    background: white;
}

.final-cta {
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #2d3748;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #718096;
    margin-bottom: 60px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

.step-description {
    color: #718096;
    line-height: 1.6;
}

/* Benefits */
.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 15px 0;
    font-size: 1.125rem;
    color: #4a5568;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.benefit {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

.benefit-description {
    color: #718096;
    line-height: 1.6;
}

/* Final Logo */
.final-logo {
    height: 80px;
    margin: 40px 0;
    object-fit: contain;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .hiring-badge {
        position: static;
        margin-top: 10px;
    }
    
    .header .container {
        flex-direction: column;
    }
}