.sub-heading, .title {
    text-align: center;
    font-family: 'Arial', sans-serif;
    margin-top: 2vh;
}

.title {
    font-size: 2.5rem;
    color: #2eabb4;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.box {
    background: #2eabb4;
    color: #fff;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.box:hover {
    transform: translateY(-10px);
}

.box h2 {
    font-size: 1.5rem;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.box h2 svg {
    margin-right: 10px;
    fill: #000;
}

.box-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box-item {
    background-color: #ffffff30;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.box-item:hover {
    background-color: #ffffff50;
}

.box-item svg {
    fill: #fff;
    flex-shrink: 0;
}

.item-content h3 {
    font-size: 1rem;
    color: #fff;
}

.item-content p {
    font-size: 0.85rem;
    color: #d8e6e9;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .box {
        width: 80%;
    }
}
