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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    padding: 20px;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 60px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #aaa;
}

main {
    max-width: 900px;
    margin: 0 auto;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    margin-top: 40px;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact {
    font-weight: 600;
    margin-top: 30px;
    font-size: 1.2rem;
}

.services ul,
.clients ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 30px;
}

.services li,
.clients li {
    padding: 10px 0;
    font-size: 1rem;
}

.services li:before {
    content: "→ ";
    color: #999;
    margin-right: 8px;
}

.clients li:before {
    content: "• ";
    color: #999;
    margin-right: 8px;
}

.team-member {
    margin-bottom: 50px;
}

.team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid #ffffff;
}

.team-member p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.specialties {
    font-style: italic;
    color: #999;
    font-size: 0.95rem;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid #ffffff;
    margin-top: 80px;
    color: #999;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .services ul,
    .clients ul {
        grid-template-columns: 1fr;
    }

    header {
        padding: 40px 20px 30px;
    }
}
