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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom, #344125, #79855D);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.leaf-icon {
    width: 64px;
    height: 64px;
    color: #16a34a;
    margin-right: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #15803d;
    font-weight: bold;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    width: 12rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.us-button {
    background-color: #79835D;
    color: white;
}

.us-button:hover {
    background-color: #6D7A3D;
}

.co-button {
    background-color: #91998A;
    color: white;
}

.co-button:hover {
    background-color: #7F916E;
}