.conscious-choice-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Navigation Tabs */
.nav-tabs {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    overflow-x: auto;
}

.tab-btn {
    background: #f8f9fa;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header i {
    font-size: 1.5rem;
}

.card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.card-content {
    padding: 30px;
}

/* Exam Structure */
.exam-structure {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.exam-session {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.exam-session h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exam-session ul {
    margin: 0;
    padding-left: 20px;
}

.exam-session li {
    margin-bottom: 8px;
    color: #555;
}

.total-questions {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* Eligibility List */
.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.eligibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* School Types */
.school-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.school-type {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.school-type:hover {
    transform: translateX(5px);
}

.school-type i {
    font-size: 1.5rem;
    color: #667eea;
}

.school-type span {
    font-weight: 600;
    color: #333;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.timeline-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Preference Screens */
.preference-screens {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.screen-type {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.screen-type h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.screen-type ul {
    margin: 0;
    padding-left: 20px;
}

.screen-type li {
    margin-bottom: 8px;
    color: #555;
}

/* Evaluation Criteria */
.evaluation-criteria {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.criteria-type {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.criteria-type h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.2rem;
}

.criteria-type ol {
    margin: 0;
    padding-left: 20px;
}

.criteria-type li {
    margin-bottom: 8px;
    color: #555;
}

/* Student Message */
.student-message .card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    border-left: 4px solid #f39c12;
}

.highlight-box p {
    margin: 0;
    color: #2d3436;
    font-weight: 500;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.advantage-item {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
}

.advantage-item h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.motivation-box {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8c0 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #2ecc71;
}

.motivation-box p {
    margin: 0 0 10px 0;
    color: #2d3436;
    font-weight: 500;
}

.motivation-box p:last-child {
    margin-bottom: 0;
}

/* Reminder Messages */
.reminder-messages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.reminder-item i {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.reminder-item p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.final-message {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.final-message h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.final-message p {
    margin: 0;
    opacity: 0.9;
}

/* Parent Message */
.parent-message .card-header {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.role-highlight {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #00acc1;
}

.role-highlight p {
    margin: 0 0 15px 0;
    color: #2d3436;
    font-weight: 500;
}

.role-highlight p:last-child {
    margin-bottom: 0;
}

/* Parent Tips */
.parent-tips {
    list-style: none;
    padding: 0;
}

.parent-tips li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.parent-tips li:last-child {
    border-bottom: none;
}

.parent-tips li i {
    color: #00acc1;
    font-size: 1.2rem;
}

/* School Advantages */
.school-advantages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.advantage-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #00acc1;
}

.advantage-point i {
    font-size: 1.5rem;
    color: #00acc1;
    flex-shrink: 0;
}

.advantage-point span {
    color: #333;
    font-weight: 500;
}

/* Parent Reminders */
.parent-reminders {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reminder-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #00acc1;
}

.reminder-point i {
    font-size: 1.5rem;
    color: #00acc1;
    flex-shrink: 0;
}

.reminder-point p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

/* District Selector */
.district-selector {
    margin-bottom: 20px;
}

.district-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.district-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.district-dropdown:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.school-selector {
    margin-bottom: 20px;
}

.school-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.school-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.school-dropdown:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select-district-message {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

.select-school-message {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

.loading {
    text-align: center;
    color: #667eea;
    font-weight: 600;
    padding: 40px 20px;
}

.error {
    text-align: center;
    color: #dc3545;
    font-weight: 600;
    padding: 40px 20px;
}

.no-schools {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* Schools Grid */
.schools-grid {
    display: grid;
    gap: 20px;
}

.school-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}

.school-card:hover {
    transform: translateY(-3px);
}

.school-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.school-info {
    flex: 1;
}

.school-info h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.2rem;
}

.school-info p {
    margin: 0 0 15px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.school-programs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.program-tag {
    background: #f8f9ff;
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.school-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-details, .btn-contact {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details {
    background: #667eea;
    color: white;
}

.btn-contact {
    background: #f8f9ff;
    color: #667eea;
    border: 1px solid #667eea;
}

.btn-details:hover, .btn-contact:hover {
    transform: translateY(-2px);
}

/* Social Media Link */
.social-media-link {
    text-align: center;
    margin-top: 20px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(131, 58, 180, 0.3);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
    color: white;
}

/* Search Box */
.search-box {
    display: flex;
    gap: 10px;
}

.school-search {
    flex: 1;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
}

.school-search:focus {
    outline: none;
    border-color: #667eea;
}

.search-btn {
    padding: 10px 15px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #5a6fd8;
}

/* School Types List */
.school-types-list {
    list-style: none;
    padding: 0;
}

.school-types-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.school-types-list li:last-child {
    border-bottom: none;
}

.school-types-list li i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Rules List */
.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li i {
    color: #00acc1;
    font-size: 1.1rem;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li i {
    color: #ddd;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checklist li i:hover {
    color: #667eea;
}

/* Motivation Quote */
.motivation-quote {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 15px;
    border-left: 4px solid #f39c12;
}

.motivation-quote i {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 15px;
    display: block;
}

.motivation-quote p {
    margin: 0;
    color: #2d3436;
    font-style: italic;
    font-weight: 500;
}

/* PDF Download */
.pdf-download {
    text-align: center;
    margin-top: 20px;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.pdf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Sidebar */
.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #667eea;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: #f8f9ff;
    color: #5a6fd8;
    transform: translateX(5px);
}

/* Important Dates */
.important-dates {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.date-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.date-info {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 0.9rem;
    color: #666;
}

.date-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        justify-content: flex-start;
        padding: 15px 0;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .school-types {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-date {
        min-width: auto;
    }
    
    .school-card {
        flex-direction: column;
        text-align: center;
    }
    
    .school-actions {
        justify-content: center;
    }
} 