* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

header {
    background-color: #DCDCD3;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    color: #fff;
    font-size: 2.5em;
    font-weight: bold;
}

.hero {
    background-color: #e6f0ff;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.hero p {
    font-size: 1.2em;
    color: #555;
}

.about {
    padding: 40px 0;
    background-color: #f7f7f7;
    text-align: center;
}

.about h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 1.1em;
    color: #555;
    width: 70%;
    margin: 0 auto;
}

.contact {
    padding: 40px 0;
    text-align: center;
    background-color: #e6f0ff;
}

.contact h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.contact p {
    font-size: 1.1em;
    color: #555;
}

.contact a {
    color: #004080;
    font-weight: bold;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    background-color: #004080;
    padding: 10px 0;
    text-align: center;
}

footer p {
    color: #fff;
    font-size: 0.9em;
}
