
.rty56 {
    margin-bottom: 4rem;
}

.rty56 h2 {
    color: #006d77;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

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

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

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

.hjk23 h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #006d77;
}

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

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

.plm45 h2 {
    margin-bottom: 2rem;
}

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

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

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

.bvc12 h3 {
    color: #006d77;
    margin-bottom: 1rem;
}

.bvc12 p {
    margin-bottom: 1.5rem;
    color: #555;
}

.bvc12 .qaz13 {
    margin-top: 1rem;
}

.wsx34 h2 {
    margin-bottom: 2rem;
}

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

.rfv67 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.rfv67:hover img {
    transform: scale(1.05);
}

.rfv67 h3 {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 109, 119, 0.8);
    color: white;
    padding: 1rem;
    margin: 0;
}

.rfv67 p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 109, 119, 0.6);
    color: white;
    padding: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .uio89, .nhy78, .edc56 {
        grid-template-columns: 1fr;
    }
    
    .plm45 {
        padding: 2rem 1rem;
    }
}

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

.hjk23, .bvc12, .rfv67 {
    animation: fadeIn 0.8s ease forwards;
}

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

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

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

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

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