/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

custom-navbar {
    display: block;
}


body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animation for service cards */
.service-card {
    transition: all 0.3s ease;
}

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

/* About page layout */
.about-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-section {
        flex-direction: row;
    }

    .about-section.reverse {
        flex-direction: row-reverse;
    }
}

/* Price list styling */
.price-category {
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.fade {
    transition: opacity 0.5s ease-in-out;
}

.fade-out {
    opacity: 0;
}