/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5faff; /* Very light mint green for wellness feel */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2 {
    color: #006D5B; /* Deep forest green */
}
p {
    margin-bottom: 1em;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 1em;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #20B2AA; /* SeaGreen - vibrant yet calming green */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #006666; /* DarkGreen hover */
}
/* Header */
header {
    background: linear-gradient(to right, #006D5B, #20B2AA); /* Deep green to SeaGreen gradient */
    color: white;
    padding: 20px 0;
    text-align: center;
}
header img {
    max-width: 300px;
    height: auto;
}
/* Sections */
section {
    padding: 40px 0;
}
.hero {
    background-color: #eafaf2; /* Pale green background */
    text-align: center;
}
.hero .lead {
    font-size: 1.2em;
    font-weight: bold;
}
.bg-light {
    background-color: #f5faff; /* Light mint green */
}
.bg-primary {
    background: linear-gradient(to right, #20B2AA, #008080); /* Green gradient with ForestGreen */
    color: white;
}
.bg-primary h2, .bg-primary p {
    color: white;
}
/* Footer */
footer {
    background-color: #006D5B; /* Deep forest green */
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
footer .disclaimer {
    font-size: 0.85em;
    font-style: italic;
    margin: 15px 0;
    padding: 10px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
}
footer a {
    color: #40E0D0; /* Light green for links */
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
    header img {
        max-width: 200px;
    }
    section {
        padding: 20px 0;
    }
}
