.guide-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: var(--surface-neutral);
    border-radius: 12px;
}

.guide-header h2 {
    font-size: 2rem;
    color: var(--text-strong);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.guide-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.guide-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.guide-card {
    background: var(--surface-neutral-strong);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px var(--accent-shadow);
}

.guide-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-strong);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-icon {
    font-size: 1.5rem;
}

.guide-desc {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.guide-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
    border-top: 1px dashed var(--border-light);
    padding-top: 15px;
}

.guide-checklist li {
    font-size: 0.9rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.guide-checklist li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.guide-checklist li:last-child {
    margin-bottom: 0;
}

.guide-footer {
    text-align: center;
    margin-top: 40px;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--accent-color);
    color: var(--on-accent) !important;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.back-home-btn:hover {
    background-color: var(--accent-hover);
}
