.blue {
    background-color: var(--primary-color);
    color: white;
}

.blue p {
    color: white;
}

.blue a {
    color: white;
    font-weight: 800;
}

.white {
    background-color: white;
    color: black;
}

.white p {
    color: #465b52;
}

.white a {
    color: var(--primary-color);
}

#feature {
    display: flex;
    flex-wrap: wrap; /* Allow boxes to wrap to the next row */
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 30px;
}


#feature .fe-box {
    flex-basis: 300px; /* Set the desired initial width with space on each side */
    flex-grow: 0;
    text-align: center;
    padding: 25px;
    box-shadow: 20px 20px 38px rgba(0, 0, 0, 0.08);
    border: 1px solid #cce7d0;
    margin-bottom: 20px; /* Add margin between the boxes */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

#feature .fe-box:hover {
    box-shadow: 20px 20px 38px rgba(70, 62, 221, 0.1);
}


#feature .fe-box h4 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h4 {
    background-color: #fcf8df;
}

#feature .fe-box:nth-child(3) h4 {
    background-color: #e0fcdf;
}

#feature .fe-box:nth-child(4) h4 {
    background-color: #dfdffc;
}

#feature::after {
    margin: auto; /* Adjust the margin to control the space above and below the line */
    margin-top: 20px;
}

#steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#steps .step-box {
    width: 450px;
    height: 200px;
    flex-grow: 0;
    padding: 30px;
    box-shadow: 20px 20px 38px rgba(0, 0, 0, 0.08);
    border: 1px solid #cce7d0;
    margin-bottom: 20px; /* Add margin between the boxes */
    display: block;
    flex-direction: column;
    border-radius: 10px;
}

#steps .steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#steps .content-image-div {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

#steps .steps-image {
    display: block;
    height: 500px;
}

.steps-image img {
    width: 500px;
    margin: 20px;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1000px) {
    #steps .step-box {
        width: 300px;
    }
}

@media (max-width: 900px) {
    #steps .step-box {
        width: 450px;
    }

    #steps .steps-image {
        display: none;
    }
}

@media (max-width: 550px) {
    #steps .step-box {
        width: 300px;
    }
}

#featured-tutors {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#call-to-action {
    background-color: #333;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

#call-to-action div {
    margin: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dark h3 {
    text-align: center;
    color: white;
}

.dark h5 {
    text-align: center;
    color: white;
}

.dark a {
    width: 150px;
    margin: 0 auto;
}

.dark a button {
    width: 100%;
}

#verify-alert {
    position: fixed;
    left: 50%;
    opacity: 0;
    transform: translateX(calc(-50% - 10px));
    width: calc(100% - 20px);
    max-width: 600px;
    margin: 10px;
    animation: slide-down 0.25s cubic-bezier(.64,1.56,.64,.95) forwards;
    z-index: 1000;
}

@keyframes slide-down {
    0% {
        top: 0;
        opacity: 0;
    }
    100% {
        top: 70px;
        opacity: 1;
    }
}

