/* style.css */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #1a73e8;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

section {
    padding: 50px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #1a73e8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    background: #f4f4f4;
    text-align: center;
    padding: 20px 0;
}
