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

/* Perfect centering layout */
body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
}

/* Center content wrapper */
.container {
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

/* Logo container constraints */
.logo-wrapper {
    margin-bottom: 1.5rem; /* Reduced space slightly for a tighter grouping with the tagline */
    display: flex;
    justify-content: center;
}

/* Responsive logo rules */
.logo-img {
    max-width: 100%;
    height: auto;
    width: 450px; 
    display: block;
}

/* Stylized tagline text */
.tagline {
    color: #a0a0a0; /* Slightly brighter for better legibility */
    font-size: 1.25rem;
    font-weight: 300;
    text-transform: lowercase; /* Keeps the exact "born to serve" format */
    letter-spacing: 0.15em; /* Expanded spacing for an elegant, modern feel */
    margin-bottom: 2.5rem;
}

/* Call to action styling */
.btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Hover interactions */
.btn:hover {
    background-color: #cccccc;
    transform: translateY(-1px);
}