/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #222;
    color: white;
    padding: 20px 50px;
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero */
.hero {
    background-color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    height: 300px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Button */
button {
    background-color: royalblue;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    cursor: pointer;
}

/* Sections */
section {
    background-color: white;
    width: 80%;
    margin: 30px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

section p {
    font-size: 18px;
    text-align: center;
}

section ul {
    margin-top: 15px;
    padding-left: 20px;
}

section ul li {
    margin: 10px 0;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}