/* Custom Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    font-weight: bold;
    color: #333;
}

.nav-link {
    color: #555;
    font-weight: 500;
}

.nav-link:hover {
    color: #000;
}

footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

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

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Service Icons */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
} 