/* Template 78 - Mint Fresh / Clean Healthcare */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap');

:root {
    --mint-light: #e8f5f0;
    --mint: #4ecdc4;
    --mint-deep: #26a69a;
    --teal: #00897b;
    --navy: #1a365d;
    --slate: #475569;
    --white: #ffffff;
    --cream: #fafdf9;
    --coral: #ff6b6b;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    color: var(--slate);
    background: var(--cream);
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Clean Floating */
.site-header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(78, 205, 196, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 100px;
    border: 2px solid var(--mint-light);
}

.site-logo a {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.site-logo a::before {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--mint);
    color: var(--white);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.site-logo a:hover {
    color: var(--teal);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--slate);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.site-nav a:hover {
    background: var(--mint-light);
    color: var(--teal);
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: left;
    position: relative;
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 100%);
    border-radius: 0 0 60px 60px;
}

.section.head::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

.section.head h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    max-width: 700px;
    line-height: 1.2;
}

.section.head h1 span {
    color: var(--mint-deep);
}

.section.head p {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 600px;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    border-left: 4px solid var(--mint);
    box-shadow: 0 10px 40px rgba(78, 205, 196, 0.1);
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section header {
    text-align: center;
    margin-bottom: 4rem;
}

.section header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section header p {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 550px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 4rem 0 2rem;
    border-radius: 60px 60px 0 0;
    margin-top: 4rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--white);
    border-color: var(--mint);
    background: rgba(78, 205, 196, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
}
