 :root {
     --primary: #2c3e50;
     --secondary: #3498db;
     --accent: #e74c3c;
     --light: #ecf0f1;
     --dark: #2c3e50;
     --success: #27ae60;
 }
 
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }
 
 body-style {
     background-color: #f9f9f9;
     color: #333;
     line-height: 1.6;
 }
 
 .container {
     max-width: 900px;
     margin: 0 auto;
     padding: 20px;
 }
 
 header {
	  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('/images/pictures/exam.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 30px 0px;
    border-radius: 8px;
}

 h1 {
     font-size: 2.2rem;
     margin-bottom: 10px;
 }
 
 h2 {
     color: var(--primary);
     margin: 25px 0 15px;
     padding-bottom: 8px;
     border-bottom: 2px solid var(--secondary);
 }
 
 h3 {
     color: var(--dark);
     margin: 20px 0 10px;
 }
 
 .program-highlight {
     background-color: white;
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.1);
     padding: 25px;
     margin-bottom: 30px;
 }
 
 .schedule {
     margin: 20px 0;
 }
 
 .schedule-item {
    display: flex;
    margin-bottom: 10px;
    gap: 15px; /* This adds space between the spans */
}

.time {
    font-weight: bold;
    min-width: 120px;
    color: var(--secondary);
}

 .pricing-options {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     margin: 20px 0;
 }
 
 .pricing-option {
     flex: 1;
     min-width: 200px;
     background-color: white;
     border-radius: 8px;
     padding: 20px;
     box-shadow: 0 2px 8px rgba(0,0,0,0.1);
     border: 2px solid var(--light);
     transition: transform 0.3s, border-color 0.3s;
 }
 
 .pricing-option:hover {
     transform: translateY(-5px);
     border-color: var(--secondary);
 }
 
 .pricing-option h4 {
     color: var(--primary);
     margin-bottom: 10px;
 }
 
 .price {
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--accent);
 }
 
 .enrollment-steps {
     background-color: white;
     border-radius: 8px;
     padding: 25px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.1);
 }
 
 .step {
     margin-bottom: 20px;
     padding-left: 30px;
     position: relative;
 }
 
 .step:before {
     /*content: "•";*/
     color: var(--secondary);
     font-size: 2rem;
     position: absolute;
     left: 0;
     top: -10px;
 }
 
 .btn {
     display: inline-block;
     background-color: var(--secondary);
     color: white;
     padding: 12px 25px;
     border-radius: 4px;
     text-decoration: none;
     font-weight: bold;
     margin-top: 15px;
     transition: background-color 0.3s;
 }
 
 .btn:hover {
     background-color: var(--primary);
 }
 
 .note {
     background-color: var(--light);
     padding: 15px;
     border-left: 4px solid var(--secondary);
     margin: 20px 0;
 }
 
 .faq-link {
     display: inline-block;
     color: var(--secondary);
     font-weight: bold;
     text-decoration: none;
     margin: 15px 0;
     padding: 8px 15px;
     border: 2px solid var(--secondary);
     border-radius: 4px;
     transition: all 0.3s;
 }
 
 .faq-link:hover {
     background-color: var(--secondary);
     color: white;
 }
 /*********** For package selection **********/
 
 .tuition-options {
     font-family: 'Arial', sans-serif;
     max-width: 500px;
     margin: 20px auto;
 }
 
 .option-card {
     display: flex;
     align-items: center;
     padding: 15px;
     margin-bottom: 12px;
     border: 2px solid #e0e0e0;
     border-radius: 8px;
     transition: all 0.3s ease;
     cursor: pointer;
 }
 
 .option-card:hover {
     border-color: #4CAF50;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 }
 
 .option-card.selected {
     border-color: #4CAF50;
     background-color: #f8fff8;
 }
 
 .radio-input {
     margin-right: 15px;
     transform: scale(1.3);
     accent-color: #4CAF50;
 }
 
 .option-details {
     flex-grow: 1;
 }
 
 .days {
     font-weight: bold;
     font-size: 18px;
     color: #333;
 }
 
 .price {
     color: #4CAF50;
     font-weight: bold;
 }
 
 .total {
     color: #666;
     font-size: 14px;
 }
 
 .highlight {
     background-color: #4CAF50;
     color: white;
     padding: 2px 6px;
     border-radius: 4px;
     font-size: 12px;
     margin-left: 8px;
 }


 @media (max-width: 768px) {
     .pricing-options {
         flex-direction: column;
     }
     
     .schedule-item {
         flex-direction: column;
     }
     
     .time {
         margin-bottom: 5px;
     }
}
