/* Main content styles */
main {
    padding: 60px 0;
}
h1 {
    margin-bottom: 30px;
    color: #01135f;
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
}
.intro-text {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
    color: #555;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-button {
    background-color: #ffffff;
    color: #01135f;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid #01135f;
}
.service-button:hover {
    background-color: #01135f;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.service-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    nav ul li {
        margin: 10px 0;
    }
    h1 {
        font-size: 2em;
    }
    .service-button {
        min-height: 180px;
    }
}