.highlight-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 32%;
    margin: 0%;
    text-align: left;
    background: #ebd6ad;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-block:hover {
    transform: scale(1.05);
}

.highlight-content {
    flex: 1;
}

.highlight-icon {
    width: 100px;
    text-align: center;
}

.highlight-icon img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.highlight-content h3 {
    margin: 5px 0;
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

.highlight-content p {
    margin: 5px 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: bold;
}

.highlight-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.highlight-button:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.highlight-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    margin-top:20px;
}

@media only screen and (max-width: 768px) {
    .highlight-container {
        flex-direction: column;
        align-items: center;
        margin-top: 0px !important;
    }

    .highlight-block {
        width: 100%;
        margin: 10px auto;
    }
}