/* Main CSS for ChewFirst Website */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #2a9d8f;
    color: white;
    padding: 20px 0;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

header p {
    text-align: center;
    font-size: 1.2rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

main {
    padding: 40px 0;
}

.intro {
    background-color: #e9f1f0;
    padding: 20px;
    border-radius: 8px;
}

.intro h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #264653;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

footer {
    background-color: #264653;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}
