.network-section {
    padding: 50px 20px;
    text-align: center;
}

.network-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3725d8;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.network-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #d4ba23;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.service-card {
    background-color: #421e42;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.7s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00bcd4;
}

.service-card .price {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #ccc;
}

.service-card ul li {
    margin: 10px 0;
}

.service-card button {
    background-color: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: #0199a6;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
