#courses {
    padding: 50px!important;
}

:root {
    --navy: #0A2240;
    --gold: #C09546;
    --white: #FFFFFF;
}

.alignCenter {
    text-align: center;
    color: #333;
}

#courses {
    background-color: #1f4883;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10px!important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.course-image {
    width: 100%!important;
    height: 200px;
    object-fit: cover;
}

#courses h3 {
    margin-top: 0px!important;
    color: white;
}

.course-title {
    background-color: var(--navy);
    color: var(--white);
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.course-content {
    padding: 20px;
}

.course-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

.btn {
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #A67C2E;
}

@media (min-width: 768px) {
    .container2 {
        flex-direction: row;
    }
    .course-card {
        flex: 1;
    }
}

.float-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 99999999;
}

.float-button:hover {
    background-color: #128C7E;
}

.float-button svg {
    width: 30px;
    height: 30px;
}