/* Custom Blue/Corporate Theme Enhancements */

/* Hero section with blue gradient */
.page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: #ffffff;
    padding: 3rem 0;
}

.page-header h1 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Enhanced navigation styling */
.nav-item a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #bee3f8;
}

/* Service cards styling */
.service-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Button styling */
.btn-primary {
    background-color: #2c5282;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e3a5f;
    color: #ffffff;
    text-decoration: none;
}

/* Footer styling */
footer {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer a {
    color: #bee3f8;
    text-decoration: none;
}

footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Professional typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

h1, h2, h3, h4, h5, h6 {
    color: #1e3a5f;
    font-weight: 600;
}

/* Links styling */
a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3a5f;
    text-decoration: underline;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }
}
