/* Guides Page Styles */

.guides-hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.guides-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.guides-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Guides Container */
.guides-container {
    padding: 0 20px 60px;
}

.guides-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Guides Intro */
.guides-intro {
    text-align: center;
    margin-bottom: 50px;
}

.guides-intro h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 20px;
    font-weight: 700;
}

.guides-intro p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Guide Card */
.guide-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.guide-card-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    color: white;
    text-align: center;
}

.guide-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.guide-card h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.guide-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.guide-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
    color: #999;
}

.guide-format {
    display: inline-block;
    background: #f0f0f0;
    color: #007bff;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
}

.guide-download-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.guide-download-btn:hover {
    background: #0056b3;
}

/* How to Use Section */
.how-to-use-section {
    background: #f8f9fa;
    padding: 50px 20px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.how-to-use-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #1a3a52;
    margin-bottom: 40px;
    font-weight: 700;
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.how-to-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.how-to-step h3 {
    font-size: 1.1rem;
    color: #1a3a52;
    margin-bottom: 10px;
    font-weight: 700;
}

.how-to-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Resources Grid */
.resources-section {
    margin-bottom: 60px;
}

.resources-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #1a3a52;
    margin-bottom: 40px;
    font-weight: 700;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.resource-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    transform: translateY(-3px);
}

.resource-card h3 {
    font-size: 1.1rem;
    color: #1a3a52;
    margin-bottom: 10px;
    font-weight: 700;
}

.resource-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.guides-cta {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    color: white;
    padding: 50px 20px;
    border-radius: 10px;
    text-align: center;
}

.guides-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.guides-cta p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guides-cta .btn {
    display: inline-block;
    background: white;
    color: #1a3a52;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guides-cta .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Guide Detail Pages - Shared Styles */
.guide-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.guide-detail-header-left {
    flex: 1 1 420px;
    min-width: 260px;
}

.guide-detail-header h1 {
    margin: 0 0 10px;
    font-size: 2.4rem;
    color: #1a3a52;
}

.guide-detail-subtitle {
    margin: 0;
    color: #4f5d6f;
    font-size: 1rem;
    line-height: 1.65;
}

.guide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.guide-actions .btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-outline {
    border: 2px solid #007bff;
    color: #007bff;
    padding: 8px 18px;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

.guide-checklist-box {
    border: 1px solid #e5ebf2;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(38, 78, 125, 0.05);
    padding: 28px;
    margin-bottom: 24px;
}

.guide-checklist-box h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 1.6rem;
    color: #1a3a52;
    font-weight: 700;
}

.guide-checklist-box h3 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: #23436e;
    font-weight: 700;
}

.guide-checklist-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.guide-checklist-box li {
    margin: 12px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #33475b;
    line-height: 1.6;
    font-size: 1rem;
}

.checklist-item input[type="checkbox"] {
    margin: 3px 0 0 0;
    width: 18px;
    height: 18px;
    accent-color: #007bff;
    flex-shrink: 0;
}

