/* Base Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header (Matches your image) */
.main-header { text-align: center; padding-top: 40px; }
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #1a2a4e;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.tagline {
    font-size: 1.2rem;
    color: #00a8ff;
    font-style: italic;
    margin-bottom: 30px;
}
.nav-divider { border: 0; height: 1px; background-color: #e0e0e0; width: 90%; margin: 0 auto; }
.centered-nav { padding: 20px 0; }
.centered-nav ul { list-style: none; padding: 0; display: flex; justify-content: center; gap: 40px; }
.centered-nav ul li a { text-decoration: none; color: #0078d4; font-weight: 500; }

/* Body Styling */
.content-body {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}
.intro-section h2 { color: #1a2a4e; font-size: 2rem; margin-bottom: 20px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    border-top: 4px solid #0078d4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.service-card h3 { color: #1a2a4e; margin-top: 0; }

/* Footer Styling */
.main-footer {
    background-color: #f4f4f4;
    color: #666;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}
.footer-content p { margin: 5px 0; font-size: 0.9rem; }