.program-details {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.icon {
    font-size: 44px;
    color: #f48024;
}

.label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.value {
    color: #333;
    font-weight: bold;
}
/*  second part */
.highlights-container {
    display: flex;
    justify-content: space-between;
    margin: 100px;
}

.highlights {
    width: 55%;
    background-color: #f4f4f4;
  
    padding: 20px;
    border-radius: 5px;
}

.highlight {
    margin-bottom: 20px;
    background-color: white;
    margin:20px;
    padding:10px 10px;
}

.icon {
    font-size: 24px;
}

h2, h3 {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.countdown {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.time {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.number {
    font-size: 24px;
    font-weight: bold;
}

.unit {
    font-size: 16px;
}

.highlights p, .highlight ul li {
    color: #666;
}
/* quiz start */
.algebra-quiz h4 {
    margin-top: 20px;
}

.algebra-quiz form {
    margin-top: 10px;
}

.algebra-quiz input[type="text"] {
    margin-bottom: 10px;
    padding: 8px;
    width: 60%;
}

.algebra-quiz button {
    padding: 10px 20px;
    background-color: #008cba;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.algebra-quiz button:hover {
    background-color: #005f73;
}

#result {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}
/* next part of Css */.program-benefits {
    display: flex;
    justify-content: space-between; /* Ensures space distribution between the cards */
    align-items: stretch; /* Aligns items vertically */
    padding: 20px;
    background: #ffffff;
    margin: 10px auto;
    max-width: 1200px; /* You can adjust this width based on your layout needs */
}

.benefit-card {
    flex: 1; /* This ensures each card takes equal width */
    margin: 10px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px; /* Ensures padding inside the card */
    display: flex;
    flex-direction: column;
}

.benefit-card h3 {
    color: #333;
    border-left: 5px solid orange;
    padding-left: 10px;
    margin-bottom: 15px; /* Adds space below the header */
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1; /* Makes the paragraph take the available space */
}

h2 {
    width: 100%;
    text-align: center;
    color: #333;
    margin-bottom: 20px; /* Space after the section title */
}

