/* style/pg66-guides.css */

/* General styles for the page content area */
.page-pg66-guides {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default dark text on light background for WCAG AA */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background */
}

.page-pg66-guides__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-pg66-guides__hero {
    background: linear-gradient(135deg, #0A2463, #364d91); /* Dark blue gradient */
    color: #FFFFFF; /* White text for dark background */
    padding: 80px 0;
    text-align: center;
}

.page-pg66-guides__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
}

.page-pg66-guides__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0; /* Light grey for subtitle, ensuring contrast with dark background */
}

.page-pg66-guides__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-pg66-guides__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1em;
}

.page-pg66-guides__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text, ensuring contrast */
    border: 2px solid #FFD700;
}

.page-pg66-guides__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-pg66-guides__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-pg66-guides__btn--secondary:hover {
    background-color: #FFD700; /* Gold background */
    color: #0A2463; /* Dark blue text */
    transform: translateY(-2px);
}

.page-pg66-guides__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}


/* Section styles */
.page-pg66-guides__section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee; /* Light border */
}

.page-pg66-guides__section:last-of-type {
    border-bottom: none;
}

.page-pg66-guides__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue title */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-pg66-guides__section-sub-title {
    font-size: 1.6em;
    color: #0A2463; /* Dark blue subtitle */
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-pg66-guides__section p {
    margin-bottom: 15px;
    color: #444444; /* Slightly lighter dark text for paragraphs */
    font-size: 1.05em;
}

.page-pg66-guides__section ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444444;
}

.page-pg66-guides__section ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

/* Images */
.page-pg66-guides__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-pg66-guides__image--full-width {
    width: 100%;
    margin: 40px 0;
}

/* Detail Pages List */
.page-pg66-guides__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.page-pg66-guides__detail-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-pg66-guides__detail-title a {
    text-decoration: none;
    color: #0A2463;
    transition: color 0.3s ease;
}

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

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

/* CTA Section specific styles */
.page-pg66-guides__section--cta {
    background-color: #0A2463; /* Dark blue background */
    color: #FFFFFF; /* White text */
    text-align: center;
    padding: 80px 0;
}

.page-pg66-guides__section--cta .page-pg66-guides__section-title {
    color: #FFD700; /* Gold title */
}

.page-pg66-guides__section--cta p {
    color: #E0E0E0; /* Light grey paragraph text */
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-pg66-guides__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-pg66-guides__hero-title {
        font-size: 2em;
    }

    .page-pg66-guides__hero-subtitle {
        font-size: 1em;
    }

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

    .page-pg66-guides__section-sub-title {
        font-size: 1.4em;
    }

    .page-pg66-guides__hero-cta,
    .page-pg66-guides__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-pg66-guides__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-pg66-guides__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-pg66-guides__hero {
        padding: 60px 0;
    }

    .page-pg66-guides__hero-title {
        font-size: 1.6em;
    }

    .page-pg66-guides__section {
        padding: 40px 0;
    }

    .page-pg66-guides__section-title {
        font-size: 1.5em;
    }

    .page-pg66-guides__section-sub-title {
        font-size: 1.2em;
    }
}