/* Core system variables and theme configuration */
:root {
    --bg-color: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #38bdf8;
}

/* Global body resets and alignment layouts */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Central layout block constraint */
.container {
    max-width: 600px;
}

/* Branding header typography and colors */
.logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.logo span {
    color: var(--accent);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Structural clean replacement for inline styles */
.section-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* Interactive elements and status items formatting */
.badge {
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Flexbox catalog wrapping your 4 business pillars */
.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Direct communication call to action layouts */
.contact-action {
    margin-top: 20px;
}

.contact-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.contact-button:hover {
    opacity: 0.9;
}

/* Legal text block placements at page bottom */
.footer-notice {
    margin-top: 60px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
