
/* Strategies Page Styles */

/* Strategy Categories */
.strategy-category {
    margin-bottom: 50px;
    background: #100a1f;
    border: 2px solid #3c266e;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(60, 38, 110, 0.3);
}

.strategy-category h3 {
    color: #3c266e;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strategy-category:first-child {
    margin-top: 30px;
}

/* Course Intro */
.course-intro {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #3c266e;
}

.course-intro h2 {
    margin-bottom: 20px;
    color: #3c266e;
    font-size: 28px;
}

.course-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.important-note {
    background: rgba(60, 38, 110, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #3c266e;
    margin-top: 20px;
}

.important-note strong {
    color: #ffd700;
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .course-grid {
        padding: 0 15px;
    }
}

/* Course Modules */
.course-module {
    background: rgba(60, 38, 110, 0.1);
    border: 1px solid rgba(60, 38, 110, 0.3);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: block;
}

.course-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 38, 110, 0.4);
    border-color: #5a3f8f;
    text-decoration: none;
    color: white;
}

.module-number {
    background: #3c266e;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.module-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.module-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

/* Progress Tracker */
.progress-tracker {
    margin-top: 60px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #3c266e;
}

.progress-tracker h3 {
    color: #3c266e;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .strategy-category {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .course-intro {
        padding: 25px;
    }
    
    .course-intro h2 {
        font-size: 22px;
    }
    
    .course-intro p {
        font-size: 16px;
    }
    
    .progress-tracker {
        padding: 25px;
        margin-top: 40px;
    }
    
    .progress-tracker h3 {
        font-size: 20px;
    }
}

/* Checklist Styling */
.checklist {
    background: rgba(60, 38, 110, 0.1);
    border: 1px solid rgba(60, 38, 110, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.checklist h4 {
    color: #3c266e;
    margin-bottom: 15px;
    font-size: 18px;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checklist-item input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #3c266e;
}

.checklist-item label {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
}

.checklist-item label:hover {
    color: #ccc;
}

@media (max-width: 480px) {
    .course-module {
        padding: 15px;
    }
    
    .module-title {
        font-size: 15px;
    }
    
    .module-description {
        font-size: 13px;
    }
    
    .strategy-category {
        padding: 15px;
    }
    
    .strategy-category h3 {
        font-size: 18px;
    }
    
    .checklist {
        padding: 15px;
    }
    
    .checklist-item {
        gap: 8px;
    }
    
    .checklist-item label {
        font-size: 13px;
    }
}
