@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Nunito:wght@400;600;700&display=swap');
        
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f4;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #546de5;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Section with Parallax */
.header {
    position: relative;
    height: 100vh;
    background: url('/api/placeholder/1200/800') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(84, 109, 229, 0.7);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.header-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.primary-btn {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.primary-btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    font-size: 2.5rem;
    padding-bottom: 0.5rem;
    color: #546de5;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background-color: #f7f9fc;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(84, 109, 229, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: #ff6b6b;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Jobs Section */
.jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(84, 109, 229, 0.15);
}

.job-header {
    background-color: #546de5;
    color: white;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.job-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: white;
}

.job-title i {
    margin-right: 0.8rem;
    font-size: 1.5rem;
}

.job-body {
    padding: 1.5rem;
}

.job-requirements {
    margin-top: 1.5rem;
}

.job-requirements h4 {
    margin-bottom: 1rem;
    color: #333;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.requirements-list li i {
    color: #ff6b6b;
    margin-right: 0.8rem;
}

/* Requirements Section */
.requirements-section {
    background-color: #f1f5fe;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(84, 109, 229, 0.15);
}

.requirement-icon {
    font-size: 2.5rem;
    color: #546de5;
    margin-bottom: 1rem;
}

/* Application Section */
.application-section {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    background-color: #f7f9fc;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #f1f5fe;
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-right: 0.8rem;
}

/* Footer */
footer {
    background-color: #546de5;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .benefits, .requirements-section, .application-section {
        padding: 2rem;
    }
    
    .jobs-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
}