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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #000;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    padding: 2rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid #000;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.services {
    list-style: none;
    padding: 0;
}

.services li {
    padding: 0.75rem 0;
    color: #000;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
}

.services li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.contact p {
    margin-bottom: 0.75rem;
    color: #000;
    font-size: 1.05rem;
}

.contact a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: none;
}

.address {
    color: #000;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #000;
}

.footer p {
    color: #000;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .services li {
        font-size: 1rem;
    }

    .contact p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }

    .container {
        padding: 1.5rem;
    }

    .title {
        font-size: 1.75rem;
    }
}
