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

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

/* Hero Section */
.page-guides__hero-section {
    background: linear-gradient(135deg, #0A2463, #3A5A93);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-guides__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:sodo,abstract,pattern,geometric]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-guides__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-guides__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-guides__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-guides__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-guides__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 10px rgba(10, 36, 99, 0.3);
}

.page-guides__btn--secondary:hover {
    background-color: #1A3C7C;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(10, 36, 99, 0.5);
}

/* Section Titles */
.page-guides__section-title {
    font-size: 2.8em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-guides__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: #FFD700;
    border-radius: 3px;
}

.page-guides__section-description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.page-guides__intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-guides__intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-guides__text-block {
    flex: 1;
    min-width: 300px;
}

.page-guides__text-block p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
}

.page-guides__image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-guides__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Detailed Guides Section */
.page-guides__detailed-guides {
    padding: 80px 0;
    background-color: #f4f7f6;
}

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

.page-guides__guide-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-guides__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-guides__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-guides__card-title {
    font-size: 1.6em;
    color: #0A2463;
    padding: 20px 25px 10px;
    margin: 0;
}

.page-guides__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.page-guides__card-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 25px 20px;
    flex-grow: 1;
}

.page-guides__guide-card .page-guides__btn--secondary {
    margin: 0 25px 25px;
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Benefits Section */
.page-guides__benefits-section {
    padding: 80px 0;
    background-color: #0A2463;
    color: #fff;
}

.page-guides__benefits-section .page-guides__section-title {
    color: #FFD700;
}

.page-guides__benefits-section .page-guides__section-title::after {
    background-color: #FFD700;
}

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

.page-guides__benefit-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-guides__benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-guides__benefit-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-guides__benefit-item p {
    font-size: 1em;
    color: #e0e0e0;
}

/* FAQ Section */
.page-guides__faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-guides__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-guides__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-guides__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.page-guides__faq-question:hover {
    background-color: #f0f0f0;
}

.page-guides__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-guides__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-guides__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-guides__faq-answer p {
    margin-bottom: 10px;
}

.page-guides__faq-answer a {
    color: #0A2463;
    text-decoration: underline;
}

.page-guides__faq-answer.open {
    max-height: 300px; /* Adjust based on content */
    padding: 20px 25px;
}

/* Call to Action Section */
.page-guides__cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A2463, #06173D);
    color: #fff;
    text-align: center;
}

.page-guides__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-guides__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-guides__cta-buttons .page-guides__btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-guides__hero-title {
        font-size: 2.8em;
    }

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

    .page-guides__intro-content {
        flex-direction: column;
        text-align: center;
    }

    .page-guides__image-block {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }

    .page-guides__guide-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-guides__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-guides__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-guides__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-guides__cta-title {
        font-size: 2.5em;
    }

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

    .page-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-guides__cta-buttons .page-guides__btn {
        margin: 0;
        width: 100%;
        max-width: 300px;
    }

    .page-guides__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-guides__hero-section, .page-guides__intro-section, .page-guides__detailed-guides, .page-guides__benefits-section, .page-guides__faq-section, .page-guides__cta-section {
        padding: 60px 0;
    }
    .page-guides__hero-title {
        font-size: 1.8em;
    }
    .page-guides__section-title {
        font-size: 1.6em;
    }
    .page-guides__guide-list, .page-guides__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-guides__card-title {
        font-size: 1.4em;
    }
    .page-guides__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-guides__faq-answer {
        padding: 15px 20px;
    }
}