
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #472300;
    background-image: linear-gradient(to bottom right, #FFFBF1, #FFF8DC);
    min-height: 100vh;
}

header {
    background-color: #FDBA74;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 10;
    padding: 1rem;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #924900;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #D97706;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #FFFBF1, #FFF8DC);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    background-color: #F59E0B;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #D97706;
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15), 0 8px 12px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.footer {
    background-color: #472300;
    color: #FFFBF1;
    padding: 3rem 2rem;
    text-align: center;
}

.footer a {
    color: #FDBA74;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFFBF1;
}
