/* Additional styles for the user guide page */
.guide-hero {
    background-color: var(--primary-dark);
    color: white;
    padding: 20px 20px 50px;
    position: relative;
    text-align: center;
}

.guide-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.guide-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1rem auto;
    color: white;
}

.page-navigation {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 20px;
    margin: 30px auto;
    max-width: 1140px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-button {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--standard-text);
    font-weight: 600;
    background-color: var(--bg-light);
    border: 2px solid var(--primary-dark);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.nav-button:active {
    transform: translateY(0);
}

.nav-item {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    margin: 60px auto;
    max-width: 100px;
    border-radius: 2px;
}

.explanation-intro {
    margin-bottom: 40px;
}

.explanation-intro h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

/* Guide steps styling */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.guide-step {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.step-number {
    flex: 0 0 80px;
    background-color: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.step-content {
    flex: 1;
    padding: 25px;
}

.step-content h3 {
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

#guide-intro .explanation-container p + p {
    margin-top: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guide-step {
        flex-direction: column;
    }

    .step-number {
        width: 100%;
        padding: 10px 0;
    }

    .page-navigation {
        flex-direction: column;
        align-items: center;
    }

    .nav-button {
        width: 100%;
        max-width: 280px;
    }
}