/* 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: 20px;
}

.page-resources__section {
    padding: 60px 0;
}

.page-resources__section--light {
    background-color: #F8F8F8; /* Light background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-resources__section--dark {
    background-color: #000080; /* Dark blue auxiliary color */
    color: #FFD700; /* Gold text for dark blue background */
}

.page-resources__hero-section {
    background: linear-gradient(135deg, #FFD700, #000080); /* Gold to Dark Blue gradient */
    color: #000080; /* Dark text for hero section */
    padding: 100px 0;
    text-align: center;
}

.page-resources__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #000080; /* Dark blue for hero title */
    font-weight: bold;
}

.page-resources__hero-title a {
    color: #000080; /* Dark blue for link in hero title */
    text-decoration: none;
}

.page-resources__hero-title a:hover {
    text-decoration: underline;
}

.page-resources__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333; /* Darker text for readability on gradient */
}

.page-resources__hero-description a {
    color: #000080; /* Dark blue for links in hero description */
    text-decoration: none;
    font-weight: bold;
}

.page-resources__hero-description a:hover {
    text-decoration: underline;
}

.page-resources__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
}

.page-resources__btn--primary {
    background-color: #000080; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #000080;
}

.page-resources__btn--primary:hover {
    background-color: #FFD700; /* Gold hover */
    color: #000080; /* Dark blue text */
    border-color: #000080;
}

.page-resources__btn--secondary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-resources__btn--secondary:hover {
    background-color: #000080; /* Dark blue hover */
    color: #FFD700; /* Gold text */
    border-color: #FFD700;
}

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

.page-resources__section--light .page-resources__section-title {
    color: #000080; /* Dark blue title on light background */
}

.page-resources__section--dark .page-resources__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-resources__section-title a {
    color: inherit;
    text-decoration: none;
}

.page-resources__section-title a:hover {
    text-decoration: underline;
}

.page-resources__text {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-resources__text--center {
    text-align: center;
}

.page-resources__text--note {
    font-style: italic;
    font-size: 0.95em;
    text-align: center;
    margin-top: 30px;
}

.page-resources__text a {
    color: #FFD700; /* Gold for links on dark background */
    text-decoration: underline;
}

.page-resources__section--light .page-resources__text a {
    color: #000080; /* Dark blue for links on light background */
}

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

.page-resources__grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-resources__section--dark .page-resources__grid-item {
    background-color: #000066; /* Slightly lighter dark blue for card on dark background */
    color: #FFD700; /* Gold text on dark card */
}

.page-resources__section--dark .page-resources__grid-item .page-resources__item-title {
    color: #FFD700; /* Gold title on dark card */
}

.page-resources__section--dark .page-resources__grid-item .page-resources__text {
    color: #FFD700; /* Gold text on dark card */
}

.page-resources__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources__image--large {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-resources__item-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #000080; /* Dark blue title on light card */
    font-weight: bold;
}

.page-resources__link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.page-resources__card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
}

.page-resources__section--dark .page-resources__card {
    background-color: #000066; /* Slightly lighter dark blue for card on dark background */
    color: #FFD700; /* Gold text on dark card */
}

.page-resources__card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #000080; /* Dark blue title on light card */
    font-weight: bold;
}

.page-resources__section--dark .page-resources__card-title {
    color: #FFD700; /* Gold title on dark card */
}

.page-resources__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-resources__card-title a:hover {
    text-decoration: underline;
}

.page-resources__card-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #555555;
}

.page-resources__section--dark .page-resources__card-description {
    color: #FFD700; /* Gold text on dark card */
}

.page-resources__card-description a {
    color: #FFD700; /* Gold for links on dark card */
    text-decoration: underline;
}

.page-resources__list {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #333333;
}

.page-resources__section--dark .page-resources__list {
    color: #FFD700; /* Gold text on dark background */
}

.page-resources__list-item {
    margin-bottom: 10px;
}

.page-resources__list-item strong {
    color: #000080; /* Dark blue for strong text on light background */
}

.page-resources__section--dark .page-resources__list-item strong {
    color: #FFD700; /* Gold for strong text on dark background */
}

.page-resources__list-item a {
    color: #000080; /* Dark blue for links on light background */
    text-decoration: underline;
}

.page-resources__section--dark .page-resources__list-item a {
    color: #FFD700; /* Gold for links on dark background */
}

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

.page-resources__promo-card {
    background-color: #000066; /* Slightly lighter dark blue for promo card */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    color: #FFD700; /* Gold text on promo card */
}

.page-resources__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-resources__promo-title {
    font-size: 1.6em;
    margin: 20px 15px 10px;
    color: #FFD700; /* Gold title on promo card */
    font-weight: bold;
}

.page-resources__promo-description {
    font-size: 1em;
    padding: 0 15px 20px;
    color: #FFD700; /* Gold text on promo card */
}

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

.page-resources__product-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    color: #333333;
}

.page-resources__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-resources__product-title {
    font-size: 1.5em;
    margin: 15px 15px 10px;
    color: #000080; /* Dark blue title on product card */
    font-weight: bold;
}

.page-resources__product-description {
    font-size: 0.95em;
    padding: 0 15px 15px;
    color: #555555;
}

.page-resources__faq-list {
    margin-top: 30px;
}

.page-resources__faq-item {
    background-color: #000066; /* Slightly lighter dark blue for FAQ item */
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: #FFD700; /* Gold text on FAQ item */
}

.page-resources__faq-question {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #FFD700; /* Gold question text */
    font-weight: bold;
}

.page-resources__faq-question a {
    color: #FFD700; /* Gold for links in FAQ question */
    text-decoration: none;
}

.page-resources__faq-question a:hover {
    text-decoration: underline;
}

.page-resources__faq-answer {
    font-size: 1em;
    color: #FFD700; /* Gold answer text */
}

.page-resources__faq-answer a {
    color: #FFD700; /* Gold for links in FAQ answer */
    text-decoration: underline;
}

.page-resources__contact-section {
    background-color: #F8F8F8;
    color: #333333;
    text-align: center;
}

.page-resources__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.page-resources__contact-item {
    margin-bottom: 10px;
}

.page-resources__contact-item strong {
    color: #000080;
}

.page-resources__conclusion-section {
    background-color: #000080;
    color: #FFD700;
    text-align: center;
}

.page-resources__conclusion-section .page-resources__text a {
    color: #FFD700; /* Gold links in conclusion */
    text-decoration: underline;
}

/* Responsive Design */
@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,
    .page-resources__promo-list,
    .page-resources__product-grid {
        grid-template-columns: 1fr;
    }

    .page-resources__link-list {
        flex-direction: column;
        align-items: center;
    }

    .page-resources__card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-resources__hero-title {
        font-size: 2em;
    }

    .page-resources__hero-description {
        font-size: 1em;
    }

    .page-resources__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources__section-title {
        font-size: 1.8em;
    }

    .page-resources__grid-item,
    .page-resources__card,
    .page-resources__promo-card,
    .page-resources__product-card {
        padding: 20px;
    }

    .page-resources__item-title,
    .page-resources__card-title,
    .page-resources__promo-title,
    .page-resources__product-title,
    .page-resources__faq-question {
        font-size: 1.3em;
    }

    .page-resources__text,
    .page-resources__list,
    .page-resources__card-description,
    .page-resources__promo-description,
    .page-resources__product-description,
    .page-resources__faq-answer,
    .page-resources__contact-list {
        font-size: 0.95em;
    }
}