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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background: #ffffff;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: #F8F9FA;
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.2s both;
    text-align: center;
    box-shadow: #4A5568;
    margin-top: 60px;
}


.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary {
    background: #c28765;
    color: white;
    box-shadow: 0 10px 30px rgba(184, 120, 84, 0.3);
    border: none;
    
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #94674f;
    box-shadow: 0 15px 40px rgba(123, 108, 98, 0.4);
    color: #e7e3e1;
}

.btn-secondary {
    background: #F8F9FA;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(87, 75, 67, 0.3);
    color: #1B3B5F;
}

.btn-secondary:hover {
    background: rgba(44, 42, 40, 0.25);
    transform: translateY(-3px);
    color: #2c2e31;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
