/* styles.css */
:root {
    --primary-color: #1e90ff;
    --secondary-color: #f4f4f9;
    --text-color: #333;
    --accent-color: #0056b3;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

header.hero {
    background: var(--primary-color);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

header.hero h1 {
    font-size: 3rem;
}

header.hero p {
    font-size: 1.5rem;
    margin-top: 10px;
}

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section p, section ul {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

section ul li {
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.2rem;
}

section ul li span {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary-color);
}

section.contact a.button {
    display: inline-block;
    padding: 15px 25px;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

section.contact a.button:hover {
    background: var(--accent-color);
}

footer.footer {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    font-size: 1rem;
}
