/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Poppins', 'SF Pro Display', sans-serif;
    background-color: #F5F1EB;
    color: #2A2A2A;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: #2A2A2A;
    font-weight: 600;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #F4C7CE, #CFE4F7, #F7D7C4);
    border-radius: 0 0 40px 40px;
    color: #2A2A2A;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background: #F4C7CE;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #2A2A2A;
    transition: 0.2s ease;
}

.btn:hover {
    background: #F7D7C4;
}

/* SECTIONS */
section {
    padding: 60px 20px;
}

/* CARDS */
.card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
