body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}
.consultation-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}
.consultation-section h1 {
    text-align: center;
    color: #222;
    margin-bottom: 30px;
    font-size: 2.5rem;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: rotateY(90deg);
    animation: rotateIn 1s ease forwards;
}


.service-card:nth-child(1) {
    animation-delay: 0.2s;
}
.service-card:nth-child(2) {
    animation-delay: 0.4s;
}
.service-card:nth-child(3) {
    animation-delay: 0.6s;
}
.service-card:nth-child(4) {
    animation-delay: 0.8s;
}
.service-card:nth-child(5) {
    animation-delay: 1s;
}
.service-card h2 {
    font-size: 1.5rem;
    margin: 0;
    padding: 20px;
    background-color: #0073e6;
    color: #fff;
}
.service-card p {
    padding: 20px;
    margin: 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.service-card .price {
    padding: 15px 20px;
    background-color: #28a745;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}



.service-card .btn {
    justify-content: center;
    padding: 75px 50px;
    background-color: #0f1e9e;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    
}


@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}
@media (max-width: 768px) {
    .service-card h2 {
        font-size: 1.3rem;
    }
    .service-card p {
        font-size: 0.9rem;
    }
    .service-card .price {
        font-size: 1rem;
    }
}