:root {
    --primary-brown: #4a3728;
    --accent-orange: #d48c45;
    --accent-olive: #727d4c;
    --text-color: #333;
    --bg-color: #f9f7f2;
    --card-bg: #ffffff;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
    text-align: center;
    border-top: 5px solid var(--accent-orange);
}

header {
    margin-bottom: 2rem;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 300;
    color: var(--primary-brown);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.content {
    margin-bottom: 2.5rem;
}

.claim {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-button {
    background-color: var(--primary-brown);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 55, 40, 0.2);
}

.contact-button:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 140, 69, 0.3);
}

.email {
    font-size: 0.9rem;
    color: var(--accent-olive);
    font-weight: 400;
}

@media (max-width: 480px) {
    .card {
        padding: 2rem;
    }

    .claim {
        font-size: 1.5rem;
    }
}