/* Checklist Page Styles */
.checklist-page {
    padding-top: 100px;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.checklist-header {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.checklist-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.checklist-header h2 {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 500;
    margin-bottom: 2rem;
}

.intro-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto 0;
    max-width: 800px;
    text-align: left;
}

.intro-box h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.intro-box p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Checklist Content */
.checklist-content {
    margin-bottom: 4rem;
}

.checklist-content > h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.checklist-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.checklist-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FFD700;
    position: relative;
}

.checklist-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-items {
    margin-bottom: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.checklist-item i {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checklist-item p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.add-item-btn,
.add-section-btn {
    background: #FFD700;
    color: #111;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.add-section-btn {
    margin: 2rem auto 0;
    display: flex;
}

.add-item-btn:hover,
.add-section-btn:hover {
    background: #111;
    color: #FFD700;
    transform: translateY(-2px);
}

/* Questions Section */
.questions-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.questions-section h2 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.questions-section h2 i {
    color: #FFD700;
}

.questions-section > p {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.questions-list {
    display: grid;
    gap: 1.5rem;
}

.question-item {
    border-left: 4px solid #555;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.question-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.question-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Red Flags Section */
.red-flags-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.red-flags-section h2 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.red-flags-section h2 i {
    color: #dc3545;
}

.red-flags-section > p {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.red-flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.red-flag-item {
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    background: #fff5f5;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.red-flag-item i {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.red-flag-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.red-flag-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.checklist-cta {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.checklist-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.checklist-cta p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checklist-page {
        padding-top: 80px;
    }
    
    .checklist-header {
        padding: 2rem 0;
    }
    
    .checklist-header h1 {
        font-size: 2rem;
    }
    
    .checklist-header h2 {
        font-size: 1.2rem;
    }
    
    .page-logo {
        height: 60px;
    }
    
    .intro-box {
        padding: 1.5rem;
        margin: 1.5rem auto 0;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checklist-section {
        padding: 1.5rem;
    }
    
    .red-flags-grid {
        grid-template-columns: 1fr;
    }
    
    .questions-section,
    .red-flags-section,
    .checklist-cta {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .checklist-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checklist-item i {
        align-self: flex-start;
    }
    
    .red-flag-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .red-flag-item i {
        align-self: flex-start;
    }
}

