.container {
    display: flex;
    justify-content: space-around;
   column-gap: 30px; 

}
.service{
    margin: 0px;
    background-color: #f8f8f8;
}
.e-service{
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 80px;
    margin-bottom: 80px;
    align-items: center;
    height: 80vh;
}
.card {
    width: 250px;
    height: 300px;
    background: white;
    padding: 20px;
    text-align: center;
    margin: 30px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-bottom: 1px solid #ff5722;
}
h4{
    font-family: sans-serif;
    font-size: 35px;
    font-weight: 500;
}
h3{
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: blue;
}
p{
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 400;
}
.icon {
    font-size: 40px;
    color: #ff5722;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 50%;
    align-items: center;
    position: absolute;
    width: 50px;
    height: 50px;
    left: -30px;
    top:120px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.icon:hover {
    background: #ff5722;
    color: white;
  
}
.details {
display: flex;
flex-direction: column;
row-gap: 30px;
margin-top: 25px;
}
.hidden-text {
    display: none;
    color: #ff5722;
}
.icon:hover + .details .hidden-text {
    display: inline;
}
/* containers */
.inform{
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
.containers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
}
.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
.active {
    border-bottom: 3px solid blue;
    color: blue;
}
.content {
    padding: 15px 0;
}
.info-list {
    list-style: none;
    padding: 0;
}
.info-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    color: blue;
    align-items: center;
}
.info-list li :hover{
    color:black
}
.info-list li i {
    color: blue;
    margin-right: 10px;
}
.important {
    font-weight: bold;
    color: black;
}