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

body {
    background: #0d0d0d;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.1rem;
    font-weight: 400;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.services ul {
    list-style: none;
}

.services li {
    padding: 14px 0;
    border-bottom: 1px solid #333;
    font-size: 1.05rem;
}

.button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
    transition: opacity 0.2s ease;
}

.button:hover {
    opacity: 0.8;
}

.about p {
    max-width: 700px;
    font-size: 1.05rem;
}