body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #d19226;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
}

.intro, .statistics, .preparation {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    border: 10px groove rgb(26, 24, 24);
    box-shadow: 0 0 10px rgba(77, 75, 75, 0.1);
    border-radius: 5px;
}

h2 {
    color: #14208f;
}

p {
    line-height: 1.6;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Services Section */
.services-one {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title__title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

/* Parent Container */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Each Row */
.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Service Box */
.service-box {
    flex: 1;
    min-width: 23%;  /* Ensures 4 boxes in a row on large screens */
}

/* Service Card */
.services-one__single {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;  /* Set a fixed height for uniformity */
}

.services-one__single:hover {
    background: #4ca1a7; /* Darker teal on hover */
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.services-one__img img {
    width: 40%;
    transition: transform 0.3s ease-in-out;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1.1) rotate(5deg); /* Slight zoom & rotation */
}


/* Service Title */
.services-one__title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-top: 15px;
    transition: color 0.3s ease-in-out;
}

.services-one__single:hover .services-one__title {
    color: #fff;
}

/* Service Text */
.services-one__text {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    transition: color 0.3s ease-in-out;
}

.services-one__single:hover .services-one__text {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-box {
        min-width: 48%;  /* 2 per row on tablets */
    }
}

@media (max-width: 768px) {
    .service-box {
        min-width: 100%;  /* 1 per row on mobile */
    }
}

/* Learning Section */
.learning-section {
    display: flex;
    gap: 20px;
    text-align: center;
    margin: 20px;
}

/* Individual Boxes */
.learning-box {
    background: #f1edbc; /* Light teal */
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    transition: 0.3s ease-in-out;
    margin: 20px;
}

/* Image Styling */
.learning-box img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.learning-box:hover {
    background: #9cef99; /* Darker teal */
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

/* Table Header */
th {
    background-color: #4ca1a7;
    color: white;
    padding: 15px;
}

/* Table Rows */
td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

/* Alternate Row Colors */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover Effect */
tr:hover {
    background-color: #d1ecf1;
    transition: 0.3s ease-in-out;
}

/* Checkbox Styling */
.checkbox input {
    transform: scale(1.2);
    cursor: pointer;
}




