.section-container {
    text-align: center;
    margin-top: 15px;
    background-color: #191e1f;
    font-family: 'Poppins';
    font-weight: normal;
    color: white;
    min-height: calc(60vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-container {
    display: flex;
    margin-left: -85px;
    padding: 1%;
}

.icon {
    font-size: 50px;
}

.service {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin-top: 20px;
    text-align: center;
}

.tkd {
    font-weight: 500;
    margin-left: 11.5px;
    margin-top: 40px;
}

.pr {
    max-width: 300px;
    padding: 0;
    right: 0;
    margin-top: 10px;
}

.hr {
    color: #DDF056;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 10px;
}

.highbold {
    color: #DDF056;
}

.subtitle {
    font-size: 20px;
    margin-top: 10px;
}

.description {
    font-size: 16px;
    margin-top: 10px;
}

.btn-s {
    display: inline-block;
    padding: 10px 20px;
    background-color: #DDF056;
    color: black;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    margin-top: 2%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-s:hover {
    background-color: #b8c939;
    color: white;
}

@media screen and (max-width: 1170px) {
    .icon-container {
        flex-direction: column;
        align-items: center;
    }

    .service {
        margin-top: 20px;
    }

    .btn-s {
        margin-top: 10%;
    }
}