* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --primary-blue: #4169e1;
    --primary-orange: #ff5c28;
    --text-gray: #666;
    --border-color: #eee;
}

body {
    line-height: 1.5;
}

aside {
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: sticky;
    top: 0;
    padding: 10px 0;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.filterIcon {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.btn {
    padding: 8px 14px;
    border-radius: 8px;
    ;
    text-decoration: none;
    font-weight: 500;
}

.btn-outline {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 10px 20px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-blue);
}

.hero-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.popular-jobs {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.job-card {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: left;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.job-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.job-logo img {
    width: 100%;
    margin: 0 auto;
}

.job-location {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.job-deadline {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.job-company {
    font-size: 14px;
}

.newsletter {
    background: var(--primary-blue);
    padding: 80px 0;
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.newsletter img {
    width: 70%;
    height: auto;
}

.email-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
}

.email-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    ;
    border: none;
    font-size: 16px;
}

.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.container-detail {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 2rem;
}

.search-bar {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
}

.filters {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 150px;
    overflow-y: auto;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #666;
}

.filter-option input[type='checkbox'] {
    accent-color: #1a73e8;
}

.apply-btn {
    background: #1a73e8;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    font-size: 14px;
}

.apply-btn:hover {
    background: #1557b0;
}

.load-more {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: white;
    border: 1px solid #1a73e8;
    color: #1a73e8;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    transition: all 0.2s;
}

.load-more:hover {
    background: #1a73e8;
    color: white;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.company-logo {
    width: 100px;
    height: 100px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.job-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.job-level {
    color: var(--text-gray);
}

.info-section {
    margin-bottom: 18px;
}

.info-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #000;
}

.info-content {
    color: var(--text-gray);
    margin-top: -15px;
}

.deadline-card {
    width: 300px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.description-list {
    list-style-position: inside;
    padding-left: 16px;
}

.description-list li {
    margin-bottom: 8px;
}

.deadline-info {
    margin-bottom: 24px;
}

.deadline-info h4 {
    margin-bottom: 8px;
}

.deadline-date {
    color: var(--text-gray);
}

.deadline-text {
    display: flex;
    justify-content: start;
    gap: 10px;
    margin-bottom: 10px;
}

.content-popular {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 50px;
}

.stat-title {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.static-info {
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
    height: fit-content;
    z-index: -10;
}

.featured-jobs {
    margin-bottom: 24px;
}

.featured-jobs h3 {
    color: #333;
    margin-bottom: 16px;
}

.job-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-info h4 {
    font-size: 14px;
    color: #555;
}

.stat-info p {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.cta-box {
    background: #4177fc;
    color: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3,
p {
    margin-bottom: 12px;
}

.cta-box a {
    background: white;
    color: #4177fc;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .container-detail {
        display: flex;
        flex-direction: column;
    }

    .static-info {
        margin-bottom: 50px;
    }

    .hero-image img {
        width: 80%;
        margin-bottom: -40px;
    }

    .job-listings,
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .newsletter-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        gap: 15px;
        align-items: start;
        top: 55px;
        right: 2px;
        width: 100%;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 30px;
        border-radius: 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .content-popular {
        flex-direction: column;
    }

    .newsletter-image img {
        width: 70%;
        margin-bottom: -10px;
        justify-content: center;
    }

    .search-bar {
        display: grid;
        grid-template-columns: 1fr 50px;
        gap: 40px;
    }

    .filters {
        display: none;
    }

    .filters.show {
        display: block;
    }

    .filterIcon {
        display: block;
    }
}