/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light gray background */
    color: #343a40; /* Dark gray text */
}

/* Navbar Styles */
.navbar {
    margin-bottom: 100px; /* Reduced margin-bottom */
    padding-top: 0px; /* Optional: add some padding if needed */
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    color: #007bff; /* Bootstrap primary blue */
}

.nav-link:hover {
    color: #0056b3; /* Darker blue on hover */
}

/* CTA Buttons */
.cta-button {
    margin: 0px;
}

.cta-button.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.cta-button.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Testimonials */
.testimonials {
    background-color: #ffffff; /* White background for contrast */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

blockquote {
    border-left: 5px solid #007bff;
    padding-left: 15px;
    margin: 10px 0;
}

/* Footer Styles */
footer {
    padding: 20px 0;
    background-color: #343a40; /* Dark gray footer */
    color: white;
}

footer p {
    margin: 0;
}

.custom-btn {
    margin-right: 10px; /* Adjust the value as needed */
}

/* Optional: Remove margin from the last button */
.custom-btn:last-child {
    margin-right: 0; /* Prevent margin on the last button */
}
