/* ===================================
   Adapt Page Styles
   =================================== */

/* Main Content Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Guide Cards Section */
.guides-section {
    margin-bottom: 4rem;
}

.guide-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.guide-card h2 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.guide-card p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
    gap: 1.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0ea5e9;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #0284c7;
    transform: translateX(-2px);
}

.nav-link.forward:hover {
    transform: translateX(2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .page-header p {
        font-size: 1.125rem;
    }

    .guide-card {
        padding: 2rem 1.5rem;
    }

    .guide-card h2 {
        font-size: 1.5rem;
    }

    .guide-card p {
        font-size: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        justify-content: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .page-header h1 {
        font-size: 1.875rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .guides-section {
        margin-bottom: 2.5rem;
    }

    .guide-card {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .guide-card h2 {
        font-size: 1.375rem;
    }

    .guide-card p {
        font-size: 0.9375rem;
    }

    .nav-links {
        padding-top: 2rem;
    }
}
