:root {
    --primary-green: #76b729;
    --primary-blue: #1a3b70;
    --bg-light: #fdfdfd;
    --card-bg: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 24px;
    text-align: center;
}

.main-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.logo {
    max-width: 380px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.description {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-info {
    text-align: left;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.contact-section {
    margin-bottom: 20px;
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: block;
}

.contact-content {
    font-size: 18px;
    color: var(--text-dark);
}

.contact-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-content a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .main-card {
        padding: 30px 20px;
    }
    .logo {
        max-width: 220px;
    }
}
