/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    color: #0056b3;
}

h1, h2, h3, h4 {
    color: #343a40;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.nav-link {
    font-size: 1rem;
    font-weight: 500;
}

/* Jumbotron */
.jumbotron {
    padding: 4rem 2rem;
    background-color: #007bff;
    color: white;
    border-radius: 0.5rem;
}

.jumbotron h1 {
    font-size: 3rem;
    font-weight: 700;
}

.jumbotron p {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    background-color: #0056b3;
    border-color: #004085;
}

.btn-primary:hover {
    background-color: #004085;
    border-color: #002752;
}

/* Contact Form */
form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    font-weight: 600;
    color: #343a40;
}

form .form-control {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

form button {
    background-color: #007bff;
    border-color: #0056b3;
}

form button:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Services Section */
.services-section {
    padding: 3rem 0;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-section .col-md-6 {
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.services-section h4 {
    color: #007bff;
    font-weight: 700;
}

.services-section p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 1rem 0;
}

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

/* Media Queries */
@media (max-width: 767.98px) {
    .jumbotron h1 {
        font-size: 2rem;
    }

    .jumbotron p {
        font-size: 1rem;
    }

    .services-section h2 {
        font-size: 2rem;
    }

    .services-section .col-md-6 {
        margin-bottom: 2rem;
    }
}
