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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0a0f1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 720px;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
}

/* Header */
.logo {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 3rem;
}

.logo span {
    font-weight: 700;
    color: #f59e0b;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid #f59e0b;
    border-radius: 2rem;
    color: #f59e0b;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Main content */
h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.description {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.description strong {
    color: #d1d5db;
}

/* Services */
.services {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.service {
    flex: 1;
    max-width: 280px;
    padding: 1.5rem;
    border: 1px solid #1e293b;
    border-radius: 0.5rem;
    background-color: #0f172a;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.service h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.service p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* Contact */
.contact {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.contact h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #9ca3af;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-items {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-item:hover {
    color: #f59e0b;
}

.contact-icon {
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding-top: 1rem;
}

footer p {
    font-size: 0.8rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 560px) {
    .container {
        padding: 2rem 1.2rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        max-width: 100%;
    }

    .contact-items {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
