/* Brand Colors & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1B3022; /* Forest Green */
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Header Styling */
header {
    margin-bottom: 30px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C5A059; /* Gold */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Button Styling */
.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    text-decoration: none;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #C5A059; /* Gold Border */
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Highlighted Primary Button */
.link-btn.primary {
    background-color: #C5A059;
    color: #1B3022;
}

.link-btn:hover {
    background-color: #C5A059;
    color: #1B3022;
    transform: translateY(-2px);
}

/* Footer Styling */
footer {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}