* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

header {
    background: linear-gradient(to right, #0066cc, #00ccff);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

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

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background: white;
    color: #0066cc;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #004d99;
    color: white;
}

section {
    padding: 40px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}
