/* style/guides.css */

/* --- General Page Styles --- */
.page-guides {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-guides-section {
    padding: 60px 0;
    text-align: center;
}

.page-guides-section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-guides-title {
    font-size: 3.2em;
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-guides-subtitle {
    font-size: 1.4em;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-guides-heading {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-guides-subheading {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-guides-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-guides-btn-primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-guides-btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-guides-btn-secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    box-shadow: 0 2px 5px rgba(0, 51, 102, 0.3);
}

.page-guides-btn-secondary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.page-guides-hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-guides-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_pattern,geometric,subtle]');
    opacity: 0.1;
    z-index: 1;
}

.page-guides-hero .page-guides-container {
    position: relative;
    z-index: 2;
}

.page-guides-hero .page-guides-title {
    color: #FFCC00;
    font-size: 3.8em;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-guides-hero .page-guides-subtitle {
    color: #e0e0e0;
    font-size: 1.6em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Introduction Section --- */
.page-guides-introduction {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-guides-introduction .page-guides-heading {
    margin-bottom: 50px;
}

.page-guides-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-guides-text-content {
    flex: 2;
    min-width: 300px;
}

.page-guides-text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-guides-text-content p strong {
    color: #003366;
}

.page-guides-text-content p a {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-guides-text-content p a:hover {
    color: #FFCC00;
}

.page-guides-image-wrapper {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.page-guides-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* --- Steps/Detail List Section --- */
.page-guides-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-guides-detail-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-guides-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-guides-detail-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background-color: #FFCC00;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 204, 0, 0.5);
}

.page-guides-detail-item h3 {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-guides-detail-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-guides-detail-item p a {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-guides-detail-item p a:hover {
    color: #FFCC00;
}

/* --- CTA Section --- */
.page-guides-cta-section {
    background: linear-gradient(45deg, #003366, #004d99);
    color: #ffffff;
    padding: 80px 0;
}

.page-guides-cta-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-guides-cta-text {
    flex: 2;
    min-width: 300px;
}

.page-guides-cta-text .page-guides-heading {
    color: #FFCC00;
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-guides-cta-text p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 0;
}

.page-guides-cta-text p a {
    color: #FFCC00;
    text-decoration: underline;
    font-weight: bold;
}

.page-guides-cta-text p a:hover {
    color: #ffffff;
}

.page-guides-cta-buttons {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* --- FAQ Section --- */
.page-guides-faq {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-guides-faq .page-guides-heading {
    margin-bottom: 50px;
}

.page-guides-faq-items {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-guides-faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.page-guides-faq-item:last-child {
    border-bottom: none;
}

.page-guides-faq-question {
    font-size: 1.3em;
    color: #003366;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-guides-faq-question a {
    color: #003366;
    text-decoration: underline;
}

.page-guides-faq-question a:hover {
    color: #FFCC00;
}

.page-guides-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-guides-faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-guides-faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-top: 15px;
    display: none;
    padding-left: 10px;
    border-left: 3px solid #FFCC00;
}

.page-guides-faq-answer.open {
    display: block;
}

.page-guides-faq-answer a {
    color: #003366;
    text-decoration: underline;
}

.page-guides-faq-answer a:hover {
    color: #FFCC00;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .page-guides-title {
        font-size: 2.8em;
    }
    .page-guides-heading {
        font-size: 2em;
    }
    .page-guides-subtitle {
        font-size: 1.2em;
    }
    .page-guides-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-guides-image-wrapper {
        order: -1;
        margin-bottom: 30px;
    }
    .page-guides-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .page-guides-cta-text {
        min-width: unset;
    }
    .page-guides-cta-buttons {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-guides-section {
        padding: 40px 0;
    }
    .page-guides-hero {
        padding: 80px 0;
    }
    .page-guides-hero .page-guides-title {
        font-size: 2.2em;
    }
    .page-guides-hero .page-guides-subtitle {
        font-size: 1.1em;
    }
    .page-guides-heading {
        font-size: 1.8em;
    }
    .page-guides-subheading {
        font-size: 1.4em;
    }
    .page-guides-detail-list {
        grid-template-columns: 1fr;
    }
    .page-guides-cta-text .page-guides-heading {
        font-size: 2.2em;
    }
    .page-guides-faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-guides-title {
        font-size: 2em;
    }
    .page-guides-hero .page-guides-title {
        font-size: 1.8em;
    }
    .page-guides-hero .page-guides-subtitle {
        font-size: 1em;
    }
    .page-guides-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-guides-detail-icon {
        width: 60px;
        height: 60px;
    }
}