.resources-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.resources-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 20px 0;
}

.resources-hero p {
    color: #666;
    font-size: 18px;
}

.resource-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.resource-points div {
    font-weight: 600;
}

.resource-points i {
    color: #2563eb;
}

.resource-search {
    padding: 80px 0;
}

.search-box {
    display: flex;
    gap: 15px;
}

.search-box input {
    height: 60px;
    border-radius: 12px;
}

.popular-tags {
    margin-top: 20px;
}

.popular-tags a {
    display: inline-block;
    margin: 8px;
    background: #eef4ff;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
}

.featured-resources {
    padding: 100px 0;
    background: #f8fbff;
}

.resource-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-8px);
}

.category {
    background: #2563eb;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
}

.resource-card h4 {
    margin: 25px 0 15px;
}

.resource-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.resource-footer a {
    text-decoration: none;
    font-weight: 600;
}

.resource-categories {
    padding: 100px 0;
}

.category-card {
    background: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card i {
    font-size: 42px;
    color: #2563eb;
    margin-bottom: 20px;
}

.latest-resources {
    padding: 100px 0;
    background: #f8fbff;
}

.article-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.article-card:hover {
    transform: translateY(-8px);
}

.article-image {
    width: 40%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    width: 60%;
    padding: 25px;
}

.article-tag {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
}

.article-content h4 {
    margin: 18px 0;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

.downloads-section {
    padding: 100px 0;
}

.download-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-8px);
}

.download-card i {
    font-size: 50px;
    color: #2563eb;
    margin-bottom: 20px;
}

.career-tools {
    padding: 100px 0;
    background: #f8fbff;
}

.tool-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 35px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.tool-card:hover {
    transform: translateY(-8px);
}

.tool-card i {
    font-size: 50px;
    color: #2563eb;
    margin-bottom: 20px;
}

.tool-card h4 {
    margin-bottom: 15px;
}

.tool-card p {
    color: #666;
}

@media (max-width: 991px) {
    .article-card {
        flex-direction: column;
    }

    .article-image,
    .article-content {
        width: 100%;
    }

    .article-image img {
        height: 240px;
    }
}
.career-faq {
    padding: 100px 0;
}

.career-faq .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.career-faq .accordion-button {
    padding: 22px;
    font-weight: 600;
    font-size: 17px;
    background: #fff;
}

.career-faq .accordion-button:not(.collapsed) {
    background: #2563eb;
    color: #fff;
}

.career-faq .accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
}

.newsletter-section {
    padding: 100px 0;
    background: #f8fbff;
}

.newsletter-box {
    background: #fff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.newsletter-box h2 {
    margin: 20px 0;
    font-weight: 700;
}

.newsletter-box .form-control {
    height: 60px;
    border-radius: 12px 0 0 12px;
}

.newsletter-box .primary-btn {
    border-radius: 0 12px 12px 0;
}

.resource-cta {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    text-align: center;
    padding: 80px 50px;
    border-radius: 30px;
}

.cta-card h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}

.cta-card p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .newsletter-box {
        padding: 35px;
    }

    .newsletter-box .input-group {
        margin-top: 25px;
    }

    .newsletter-box .form-control,
    .newsletter-box .primary-btn {
        border-radius: 12px;
    }

    .newsletter-box .primary-btn {
        margin-top: 15px;
        width: 100%;
    }

    .cta-card {
        padding: 50px 25px;
    }

    .cta-card h2 {
        font-size: 34px;
    }
}
