:root {
    /* Primary health-focused color palette */
    --primary: #4ade80; /* Vibrant green */
    --primary-dark: #22c55e; /* Deeper green */
    --primary-light: #bbf7d0; /* Light green */
    --secondary: #0ea5e9; /* Calm blue */
    --secondary-dark: #0c83ba;
    --secondary-light: #bae6fd; /* Light blue */
    --accent: #fbbf24; /* Warm yellow for energy */
    
    /* Neutral colors */
    --dark: #1e293b; /* Dark slate */
    --light: #f8fafc; /* Off-white */
    --gray: #64748b; /* Slate gray */
    --light-gray: #e2e8f0; /* Light gray */
    --white: #ffffff; /* Pure white */
    
    /* Background gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(34, 197, 94, 0.2);
}

button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(34, 197, 94, 0.3);
}

.container {
    max-width: calc(600px + 40vw);
    min-height: 30vh;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, calc(6vw - 10px), 2rem);
}

.section-title,
.section-title-2 {
    font-size: clamp(2rem, calc(1.5rem + 2vw), 2.8rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title{
    color: var(--primary-dark);
}

.section-title-2{
    color: var(--secondary);
}

.section-title:after,
.section-title-2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 10px;
}

.section-title:after {
    background-color: var(--primary);
}

.section-title-2:after {
    background-color: var(--secondary);

}
