/* style/resources.css */
.page-resources {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-resources__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources__section {
    padding: 60px 0;
    background-color: #fff;
}

.page-resources__section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-resources__section-title {
    font-size: 2.5em;
    color: #0A2239;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources__hero {
    background: linear-gradient(135deg, #0A2239, #1a426b);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources__hero-content {
    position: relative;
    z-index: 1;
}

.page-resources__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-resources__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources__hero-cta .page-resources__btn {
    margin: 10px;
}

.page-resources__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
    object-fit: cover;
}

.page-resources__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.page-resources__btn--primary {
    background-color: #FFD700;
    color: #0A2239;
    border: 2px solid #FFD700;
}

.page-resources__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-resources__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
}

.page-resources__btn--outline {
    background-color: transparent;
    color: #0A2239;
    border: 1px solid #0A2239;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-resources__btn--outline:hover {
    background-color: #0A2239;
    color: #fff;
}

.page-resources__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-resources__btn--xl {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources__intro p, .page-resources__why-choose p, .page-resources__benefits p, .page-resources__tips p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-resources__why-choose ul,
.page-resources__benefits ul,
.page-resources__tips ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-resources__why-choose ul li,
.page-resources__benefits ul li,
.page-resources__tips ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources__img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources__section-image {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources__card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources__card-title {
    font-size: 1.5em;
    color: #0A2239;
    margin-bottom: 15px;
}

.page-resources__card-title a {
    text-decoration: none;
    color: #0A2239;
}

.page-resources__card-title a:hover {
    color: #FFD700;
}

.page-resources__card-description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-resources__cta-final {
    background: linear-gradient(90deg, #0A2239, #1a426b);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources__cta-final .page-resources__section-title {
    color: #FFD700;
}

.page-resources__cta-final p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources__cta-small-text {
    font-size: 0.9em;
    margin-top: 20px;
    color: #ccc;
}

.page-resources__cta-small-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-resources__cta-small-text a:hover {
    text-decoration: underline;
}

.page-resources__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources__hero-title {
        font-size: 2.5em;
    }
    .page-resources__hero-description {
        font-size: 1.1em;
    }
    .page-resources__section-title {
        font-size: 2em;
    }
    .page-resources__grid {
        grid-template-columns: 1fr;
    }
    .page-resources__hero-cta .page-resources__btn {
        display: block;
        width: 80%;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-resources__hero-title {
        font-size: 2em;
    }
    .page-resources__hero-description {
        font-size: 1em;
    }
    .page-resources__section-title {
        font-size: 1.8em;
    }
    .page-resources__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources__btn--xl {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}