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

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

.page-guides-hero {
    background: linear-gradient(135deg, #0A246A 0%, #0A246A 60%, #FFD700 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,geometric,blue_gold_pattern]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

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

.page-guides-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-guides-section-title {
    font-size: 2.5em;
    color: #0A246A;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-guides-intro, .page-guides-detailed-guides, .page-guides-deep-dive, .page-guides-cta {
    padding: 80px 0;
}

.page-guides-intro {
    background-color: #ffffff;
}

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

.page-guides-feature-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-guides-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-guides-feature-item h3 {
    color: #0A246A;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-guides-feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.page-guides-detailed-guides {
    background-color: #f9f9f9;
}

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

.page-guides-guide-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-guides-guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-guides-guide-item h3 {
    font-size: 1.6em;
    margin: 20px 20px 10px;
}

.page-guides-guide-item h3 a {
    color: #0A246A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-guides-guide-item h3 a:hover {
    color: #FFD700;
}

.page-guides-guide-description {
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-guides-guide-item .page-guides-btn {
    display: inline-block;
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-guides-deep-dive {
    background-color: #ffffff;
}

.page-guides-deep-dive h2 {
    margin-bottom: 40px;
}

.page-guides-deep-dive h3 {
    color: #0A246A;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-guides-deep-dive p {
    margin-bottom: 20px;
}

.page-guides-deep-dive ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-guides-deep-dive li {
    margin-bottom: 10px;
}

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

.page-guides-cta {
    background-color: #0A246A;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.page-guides-cta .page-guides-section-title {
    color: #FFD700;
}

.page-guides-cta .page-guides-section-title::after {
    background-color: #ffffff;
}

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

.page-guides-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.page-guides-btn-primary {
    background-color: #FFD700;
    color: #0A246A;
    border: 2px solid #FFD700;
}

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

.page-guides-btn-secondary {
    background-color: transparent;
    color: #0A246A;
    border: 2px solid #0A246A;
}

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

.page-guides-cta .page-guides-btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.page-guides-cta .page-guides-btn-secondary:hover {
    background-color: #ffffff;
    color: #0A246A;
}

.page-guides-btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-guides-text-link {
    color: #0A246A;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-guides-text-link:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-guides-hero-title {
        font-size: 2.5em;
    }

    .page-guides-hero-description,
    .page-guides-cta p {
        font-size: 1.1em;
    }

    .page-guides-section-title {
        font-size: 2em;
    }

    .page-guides-feature-grid,
    .page-guides-guide-list {
        grid-template-columns: 1fr;
    }

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

    .page-guides-btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-guides-intro, .page-guides-detailed-guides, .page-guides-deep-dive, .page-guides-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-guides-hero {
        padding: 80px 0;
    }

    .page-guides-hero-title {
        font-size: 2em;
    }

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

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

    .page-guides-feature-item,
    .page-guides-guide-item {
        padding: 20px;
    }

    .page-guides-btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .page-guides-cta .page-guides-btn {
        display: block;
        margin-bottom: 15px;
    }
    .page-guides-guide-item .page-guides-btn {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
}