 
.dfg12 {
    margin-bottom: 4rem;
}

.jkl34 {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.zaq23 {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.wsx43 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.wsx43 img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #83c5be;
}

.edc65 {
    margin-left: 1.5rem;
}

.edc65 h3 {
    margin-bottom: 0.3rem;
    color: #006d77;
}

.rty78 {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.uyt90 {
    display: flex;
}

.iop12 {
    color: #ffd166;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.plm67 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 2rem;
}

.plm67::before {
    content: "\201C";
    font-size: 4rem;
    color: #83c5be;
    position: absolute;
    left: 0;
    top: -1.5rem;
    opacity: 0.5;
}

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

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

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

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

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

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

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

 .tyu34 {
    margin-bottom: 4rem;
}

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

.qaz78 {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.qaz78:hover {
    transform: scale(1.03);
}

.qaz78 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.qaz78:hover img {
    transform: scale(1.1);
}

 .iop45 {
    text-align: center;
    background-color: #006d77;
    color: white;
    padding: 3rem;
    border-radius: 10px;
}

.iop45 h2 {
    color: white;
    margin-bottom: 1rem;
}

.klp67 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.jhy78 .qaz13 {
    background-color: #ffd166;
    color: #333;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.jhy78 .qaz13:hover {
    background-color: #ffb347;
}

 @media (max-width: 768px) {
    .wsx43 {
        flex-direction: column;
        text-align: center;
    }
    
    .edc65 {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .uyt90 {
        justify-content: center;
    }
    
    .yui78 {
        padding: 2rem 1rem;
    }
    
    .rew56 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

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

.zaq23 {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.zaq23:nth-child(2) {
    animation-delay: 0.3s;
}

.zaq23:nth-child(3) {
    animation-delay: 0.6s;
}

.vbn12 {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.vbn12:nth-child(2) {
    animation-delay: 0.2s;
}

.vbn12:nth-child(3) {
    animation-delay: 0.4s;
}

.qaz78 {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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