:root {
    --primary-color: #333;
    --accent-color: #3983ab; /* Taken from the original border color idea */
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #4a4a4a;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.card {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 600px;
    width: 100%;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    margin-bottom: 2rem;
    /* Smooth rendering */
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
}

p.subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer {
    margin-top: auto;
    padding: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.contact-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.contact-link:hover:after {
    width: 100%;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .card {
        padding: 2rem;
        box-shadow: none;
        background: transparent;
    }
    
    h1 {
        font-size: 2rem;
    }
}
