.text-container p{
    color: #000 !important;
}
.taekwondo-section {
    display: flex;
    padding: 20px;
    border-radius: 8px;
    width: 1200px;
    margin: 5rem auto;
    align-items: center;
}

.image-container img {
    width: 350px;
    height: 400px;
    border-radius: 0px;
}

.text-container {
    margin-left: 20rem;
    max-width: 600px;
    float: right;
}

.title {
    font-size: 36px;
    color: #003366;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.button-container button:nth-child(odd):last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

.button {
    background-color: transparent;
    border: 2px solid #003366;
    color: #003366;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

.button:hover {
    background-color: #003366;
    color: #000;
    border: 1px solid red;
}

/* Media Query for Tablets */
@media (max-width: 992px) {
    .taekwondo-section {
        flex-direction: column;
        width: 90%;
        margin: 3rem auto;
        align-items: center;
        text-align: center;
    }

    .image-container img {
        width: 80%;
        height: auto;
    }

    .text-container {
        margin-left: 0;
        max-width: 100%;
    }

    .title {
        font-size: 28px;
    }

    .description {
        font-size: 14px;
    }

    .button-container {
        grid-template-columns: 1fr;
    }
}

/* Media Query for Phone Screens */
@media (max-width: 600px) {
    .taekwondo-section {
        flex-direction: column;
        width: 100%;
        margin: 2rem auto;
        align-items: center;
        text-align: center;
    }

    .image-container img {
        width: 100%;
        height: auto;
    }

    .text-container {
        margin-left: 0;
        max-width: 100%;
    }

    .title {
        font-size: 24px;
    }

    .description {
        font-size: 12px;
    }

    .button-container {
        grid-template-columns: 1fr;
    }

    .button {
        padding: 8px 16px;
        font-size: 12px;
    }
}
