/* NO <style> TAGS HERE! */
:root {
    --font-serif: 'Poppins','Playfair Display', Georgia, serif;
    --font-sans: 'Poppins', Helvetica, Arial, sans-serif;
    --bg-gradient: linear-gradient(135deg, #fdf6e3 0%, #e8f5f1 100%);
    --text-dark: #2c1e16;
    --text-light: #5a4a42;
    --accent-gold: #c4a98b;
    --primary: #FF8A80;
    --btn-bg: #eee4d6;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

/* img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* =========================================
   SECTION HEADER (Reusable)
   ========================================= */
.header {
    text-align: center;
    max-width: 700px;       /* Keeps text readable, prevents stretching */
    margin: 0 auto 60px;    /* Centers block & adds space below */
    padding: 0 20px;        /* Prevents text touching edges on mobile */
}

/* The "Eyebrow" Text (Specialized Care) */
.header span {
    display: block;         /* Forces it to its own line */
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;    /* Adds that premium "spaced out" look */
    margin-bottom: 15px;
}

/* The Main Headline (Kindness in every checkup) */
.header h2 {
    font-family: var(--font-serif);
    font-size: 3rem;        /* Large and elegant */
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

/* The Description Paragraph */
.header p {
    font-family: var(--font-sans);
    color: var(--text-light);
    font-size: 1.125rem;    /* Slightly larger than body text for intro */
    line-height: 1.7;
    opacity: 0.9;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    .header {
        margin-bottom: 40px;
    }
    
    .header h2 {
        font-size: 2.2rem;  /* Smaller font for mobile screens */
    }
    
    .header p {
        font-size: 1rem;
    }
}
