body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.container {
    display: flex;
    flex-direction: column;
    padding: 64px 32px;

}
h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.06em;
}
h2 span {
    color: #19ABCC;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 99px;
    border: 1px solid #D0D0D0;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-button.active {
    background: linear-gradient(180deg, #19ABCC, #1498B6);
    color: #fff;
    border-color: #248398;
    box-shadow: 0 -3px 0 rgba(0,0,0,0.15) inset;
}
.service-button:hover:not(.active) {
    border-color: #19ABCC;
}
.service-content {
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: fit-content;
}
.service-info {
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding: 32px 24px;
    justify-content: center;
}
.service-info h3 {
    font-size: 36px;
    font-weight: 600;
    margin:0;
    margin-bottom: 8px;
    color: #101010;
}
.service-info p {
    font-size: 16px;
    line-height: 1.5;
    color: #3A3A3A;
    margin-bottom: 24px;
}
.learn-more {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 600;
    color: #1D1D1D;
    cursor: pointer;
    transition: color 0.3s ease;
}
.learn-more:hover {
    color: #19ABCC;
}
.service-image {
    height: 340px;
    background-size: cover;
    background-position: center;
}
.service-button .material-icons {
    vertical-align: middle;
    margin-right: 8px;
}

@media (min-width: 768px) {

    .service-button p{
        font-size: 12px;
    }
    .service-content {
        flex-direction: row;
    }
    .service-info {
        width: 50%;
        height: 310px;
    }
    .service-image {
        width: 50%;
        height: auto;
    }
    .service-info {
        display: flex;
        flex-direction: column;
        padding: 32px 48px;
        justify-content: center;
        
    }   
    

}

@media (max-width: 768px) {
    .service-info h3{
        font-size: 20px;
    }
}