/* Base styling */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f3f4f6;
    color: #1f2937;
}

header {
    text-align: center;
    padding: 40px 20px;
    font-size: 22px;
    font-weight: 600;
}

/* HERO */
.hero {
    max-width: 1100px;
    margin: 20px auto;
    background: white;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Modern Text Logo */
.logo-box {
    text-align: center;
}

.logo-text {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #111827, #4b5563);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.logo-sub {
    margin-top: -6px;
    font-size: 16px;
    font-style: italic;
    color: #6b7280;
}

/* About text */
.about-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Services grid */
.services-container {
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.service-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

/* Contact */
.contact-box {
    max-width: 1100px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    font-size: 15px;
    color: #1f2937;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 850px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
