/* General Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: #333;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    margin-right: 1rem;
}

.navbar-nav .nav-link.active {
    color: #556ee6;
}

.btn-primary {
    background-color: #556ee6;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4455cc;
}

/* Services Section */
.services-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.section-description {
    margin-bottom: 0.5rem;
    /* Reduce the margin at the bottom */
}


.section-description.mb-5 {
    margin-bottom: 1rem !important;
    /* Adjust the spacing */
}

.text-center.text-success.fw-bold {
    margin-top: 0;
    /* Remove the top margin of the discount message */
}

.alert-info.mb-5 {
    margin-bottom: 1rem !important;
    /* Adjust the spacing */
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.contact-button.mt-5 {
    margin-top: 0.5rem !important;
    /* Adjust the top margin */
}

.display-6 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.display-6 small {
    font-size: 1rem;
    color: #888;
}

.note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

