/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


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

/* Recruitment Section */
.recruitment-section {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}

.recruitment-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.recruitment-intro-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.recruitment-intro {
    font-size: 18px;
    margin-bottom: 32px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.recruitment-table {
    width: 100%;
    border-collapse: collapse;
}

.recruitment-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.recruitment-table td {
    padding: 16px 24px;
}

.table-header {
    background-color: #f9fafb;
    white-space: nowrap;
}

.table-content {
    line-height: 1.8;
}

.apply-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.apply-button-wrapper {
    margin-top: 48px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.apply-button {
    background-color: #1e3a5f;
    color: white;
    padding: 16px 48px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* Responsive Design */
@media (min-width: 1024px) {
    .footer-info {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-mobile {
        display: none;
    }

    .footer-desktop {
        display: block;
    }
}

@media (min-width: 768px) {

}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
