 
.poi98 {
    margin-bottom: 4rem;
}

.lkj45 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mnb67 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mnb67:hover {
    transform: translateY(-5px);
}

.mnb67 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.vcx23 {
    padding: 2rem;
}

.vcx23 h3 {
    color: #006d77;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vcx23 p {
    margin-bottom: 0.8rem;
    color: #555;
}

.vcx23 p:nth-child(2),
.vcx23 p:nth-child(3) {
    font-weight: bold;
    color: #00838f;
}

.vcx23 .qaz13 {
    margin-top: 1.5rem;
}

 .jhy56 {
    background-color: #edf6f9;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.tyu78 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ghj34 {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ghj34:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ghj34 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ghj34 h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #006d77;
}

.ghj34 p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

 .bnm12 {
    margin-bottom: 3rem;
}

.xsw34 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cde45 {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cde45 h3 {
    color: #006d77;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #83c5be;
}

.vfr56 {
    list-style-position: inside;
    padding-left: 1rem;
}

.vfr56 li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

/* .vfr56 li::before {
    content: "•";
    color: #ffd166;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.3rem;
} */

 @media (max-width: 992px) {
    .mnb67 {
        grid-template-columns: 1fr;
    }
    
    .mnb67 img {
        height: 300px;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 768px) {
    .jhy56 {
        padding: 2rem 1rem;
    }
    
    .tyu78 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .xsw34 {
        grid-template-columns: 1fr;
    }
}

 @keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mnb67:nth-child(odd) {
    animation: slideInLeft 0.8s ease forwards;
}

.mnb67:nth-child(even) {
    animation: slideInRight 0.8s ease forwards;
}

.ghj34 {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ghj34:nth-child(1) { animation-delay: 0.1s; }
.ghj34:nth-child(2) { animation-delay: 0.2s; }
.ghj34:nth-child(3) { animation-delay: 0.3s; }
.ghj34:nth-child(4) { animation-delay: 0.4s; }
.ghj34:nth-child(5) { animation-delay: 0.5s; }
.ghj34:nth-child(6) { animation-delay: 0.6s; } 