/* Reset everything */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
}

header {
    background-color: #002147;
    padding: 50px 0;
    color: white;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    font-style: italic;
}

section {
    padding: 40px 0;
    background-color: white;
    text-align: center;
}

section#about {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
    background-size: cover;
    color: white;
    padding: 80px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #002147;
}

ul {
    list-style-type: none;
    font-size: 1.5em;
    line-height: 1.6;
    font-weight: bold;
}

ul li {
    margin-bottom: 10px;
}

#testimonials p {
    font-style: italic;
    font-size: 1.2em;
    margin-bottom: 15px;
}

footer {
    background-color: #001b33;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 1.1em;
}

footer p {
    margin-bottom: 10px;
}

