:root {
    --primary-color: #3B7D8C; /* Inspired by the teal glove in the logo */
    --secondary-color: #D1A535; /* Inspired by the gold stars */
    --bg-color: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

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

body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 1rem;
    -webkit-font-smoothing: antialiased;
}

.container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header {
    margin-bottom: 2rem;
}

.logo {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 8px 20px rgba(59, 125, 140, 0.25);
}

.cta-button:hover, .cta-button:focus {
    background-color: #2f6570;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(59, 125, 140, 0.35);
}

.cta-button .icon {
    margin-right: 0.75rem;
}

footer {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Tablet & Desktop */
@media (min-width: 640px) {
    .container {
        padding: 3.5rem 3rem;
        max-width: 540px;
    }
    
    .logo {
        max-width: 200px;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .cta-button {
        width: auto;
        padding: 1rem 2.5rem;
    }
}
