body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 60px 20px;
}

h1 {
    font-size: 4rem;
    color: #2c3e50; /* Deep Professional Blue */
    margin-bottom: 0;
}

.tagline {
    font-size: 1.4rem;
    color: #3498db; /* Medium Blue accent */
    font-weight: 500;
    margin-top: 5px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #3498db;
}

.service-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

footer {
    margin-top: 40px;
    font-style: italic;
    color: #888;
}