/* styles.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background: #003366;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

header h1 {
    font-size: 3rem;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header p {
    margin-top: 1rem;
}

/* Container and sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    margin-bottom: 2rem;
}

h2, h3 {
    color: #003366;
}

ul {
    list-style: disc;
    margin-left: 2rem;
}

/* Services articles */
section#services article {
    margin-bottom: 1.5rem;
}

/* Contact section */
.contact {
    background: #003366;
    color: white;
    text-align: center;
    padding: 2rem;
}

.contact a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact p {
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .container {
        padding: 1rem;
    }
}
