style.css
/* style.css */

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

body {
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
}

header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

.cta-button {
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #333;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid #e5e5e5;
}