/* 1. Design Tokens & Variables[cite: 6] */
:root {
    /*--primary: #4f46e5;
    --primary-dark: #3730a3;
    --accent: #818cf8;*/
    /* Main brand color for primary buttons, active states, and emphasis */
    --primary: #007A87;         /* Deep Teal / Medical Cyan from the main text */
    
    /* Darker shade for button hover states and deep structural text */
    --primary-dark: #005A64;    /* Deeper Teal for consistent hover feedback */
    
    /* Lighter, high-contrast accent color for badges and secondary highlights */
    --accent: #00A3B4;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Base Resets[cite: 6] */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* 3. Global Utility Classes[cite: 3, 8] */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn--outline {
    border: 2px solid var(--border);
    background: transparent;
}

.btn--outline:hover {
    background: var(--border);
}
/* Add these down inside section 3: Global Utility Classes of global.css */
.w-full {
    width: 100% !important;
}

.btn--outline-danger {
    border: 2px solid #fee2e2;
    background: transparent;
    color: #ef4444;
}

.btn--outline-danger:hover {
    background: #fef2f2;
    border-color: #fca5a5;
}

/* 4. Animation Engine[cite: 6, 8] */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}