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

:root {
    --primary-color: #6a3144;
    --primary-dark: #45202c;
    --gold-color: #c9a227;
    --gold-light: #d4b44a;
    --gold-dark: #a8861f;
    --cream: #faf8f5;
    --secondary-color: #f5f2ed;
    --accent-color: #fcf9f4;
    --text-dark: #2d2024;
    --text-light: #5c4d52;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(106, 49, 68, 0.08);
    --shadow-hover: 0 8px 30px rgba(106, 49, 68, 0.12);
    --gold-gradient: linear-gradient(135deg, #c9a227 0%, #d4b44a 50%, #c9a227 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--cream);
    letter-spacing: 0.01em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.35rem;
    line-height: 1.1;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    font-weight: 700;
    display: block;
}

.footer-brand-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--white);
    color: #5a2434;
    padding: 180px 0 100px;
    text-align: left;
    position: relative;
}

.hero-brand-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.1rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #5a2434;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-brand-silhouette {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin-right: 10px;
    filter: sepia(1) saturate(8) hue-rotate(355deg) brightness(1.05) contrast(1.05);
    vertical-align: middle;
}

.mobile-portal-bar {
    display: none;
    position: sticky;
    top: 86px;
    z-index: 900;
    background: rgba(106, 49, 68, 0.98);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.mobile-portal-bar .container {
    display: flex;
}

.mobile-portal-bar .btn-primary {
    width: 100%;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(106, 49, 68, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(106, 49, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
    color: #5a2434;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-style: italic;
    letter-spacing: 1px;
    color: #5a2434;
}

.hero .btn-primary {
    color: #5a2434;
    border-color: #5a2434;
}

.hero .btn-primary:hover {
    background: #5a2434;
    color: var(--white);
}

.hero .btn-gold {
    color: var(--white) !important;
    border-color: var(--gold-color) !important;
}

.hero .btn-outline {
    color: #5a2434 !important;
    border-color: #5a2434 !important;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: left;
}

.hero-text {
    flex: 1 1 35%;
    max-width: 420px;
}

.hero-logo {
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(106, 49, 68, 0.15));
}

.btn-appt-inline {
    display: inline-block;
    background: var(--gold-color);
    color: var(--white);
    padding: 12px 28px;
    border: 2px solid var(--gold-color);
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 4px;
}

.btn-appt-inline:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.home-visit-banner {
    max-width: 780px;
    margin: 10px auto 30px;
    padding: 22px 26px;
    border: 1px solid rgba(201, 162, 39, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.home-visit-banner h3 {
    color: var(--gold-color);
    margin-bottom: 8px;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.home-visit-banner p {
    margin-bottom: 0;
    font-size: 1rem;
    font-style: normal;
}

.appointment-banner {
    background: var(--primary-color);
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid var(--gold-color);
}

.appointment-banner .btn-primary {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 16px 45px;
    border: 2px solid var(--gold-color);
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: var(--gold-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.text-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-top: 4px solid var(--gold-color);
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.info-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

.text-list {
    margin: 15px 0;
    padding-left: 20px;
}

.text-list li {
    padding: 8px 0;
    color: var(--text-light);
}

.photo-showcase {
    padding: 100px 0;
    background: var(--white);
}

.photo-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.photo-card {
    background: var(--secondary-color);
    border: 1px solid rgba(201, 162, 39, 0.25);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.photo-placeholder {
    display: block;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(106, 49, 68, 0.12), rgba(201, 162, 39, 0.12));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.photo-card p {
    padding: 16px 18px;
    text-align: center;
    color: var(--text-dark);
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

/* Health Topics Section */
.health-topics {
    padding: 100px 0;
    background: var(--secondary-color);
}

.health-topics h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Hydration Section */
.hydration-section {
    padding: 100px 0;
    background: var(--accent-color);
}

.hydration-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* Nutrition Section */
.nutrition-section {
    padding: 100px 0;
    background: var(--white);
}

.nutrition-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Self-Care Section */
.selfcare-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.selfcare-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

/* When to Seek Section */
.when-to-seek {
    padding: 100px 0;
    background: var(--accent-color);
}

.when-to-seek h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* IV Intro Section */
.iv-intro {
    padding: 100px 0;
    background: var(--white);
}

.iv-intro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 162, 39, 0.15);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 162, 39, 0.4);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
    padding: 15px;
    border: 2px solid var(--gold-color);
    border-radius: 50%;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Georgia', serif;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--gold-color);
    color: var(--white);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--accent-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 0;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--gold-color);
    box-shadow: var(--shadow);
}

.contact-item h3 {
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.question-form-container {
    background: var(--white);
    padding: 50px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-top: 4px solid var(--gold-color);
}

.question-form-container h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.question-form-container > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.question-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    background: var(--cream);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border: 2px solid var(--gold-color);
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--gold-color);
    color: var(--white);
}

.btn-email {
    background: var(--gold-color);
    color: white;
    padding: 6px 12px;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 5px;
}

.btn-email:hover {
    background: #b8922a;
    color: white;
}

.followup-section {
    background: #fff3cd;
    border: 2px solid var(--gold-color);
    padding: 30px;
    margin-bottom: 30px;
}

.followup-section h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.followup-card {
    background: var(--white);
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--gold-color);
}

.followup-card .question-text {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.response-form .form-group {
    margin-bottom: 15px;
}

.response-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.followup-tag {
    background: #17a2b8;
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
}

.followup-response {
    border-left: 4px solid #17a2b8;
}

.client-response-box {
    background: #e8f4f8;
    padding: 15px;
    margin: 10px 0;
    border-left: 3px solid #17a2b8;
}

.client-response-box p {
    margin: 0 0 10px 0;
    color: var(--primary-color);
}

.response-date {
    font-size: 0.8rem;
    color: #666;
}

.btn-delete {
    background: #dc3545;
    color: white;
    padding: 6px 12px;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: #c82333;
}

.form-success {
    background: var(--accent-color);
    padding: 30px;
    border-left: 4px solid var(--gold-color);
    margin-top: 20px;
}

.form-success p {
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--gold-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
    color: #5a2434;
}

/* Fluid Types Section */
.fluid-types {
    padding: 100px 0;
    background: var(--white);
}

.fluid-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Indications Section */
.indications-section {
    padding: 100px 0;
    background: var(--accent-color);
}

.indications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.indication-box {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.indication-box.appropriate {
    border-top: 4px solid var(--primary-color);
}

.indication-box.consider {
    border-top: 4px solid var(--gold-color);
}

.indication-box h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.indication-box ul {
    list-style: none;
}

.indication-box li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--secondary-color);
}

.indication-box li:last-child {
    border-bottom: none;
}

.indication-box.appropriate li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.indication-box.consider li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

/* Safety Section */
.safety-section {
    padding: 100px 0;
    background: var(--white);
}

.safety-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.safety-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
}

.safety-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.safety-card ul {
    list-style: none;
}

.safety-card li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.questions-box {
    background: var(--accent-color);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border-left: 4px solid var(--gold-color);
}

.questions-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.questions-box ol {
    padding-left: 20px;
}

.questions-box li {
    padding: 10px 0;
    color: var(--text-light);
}

/* Sources Section */
.sources-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.sources-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sources-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.source-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.source-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.source-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-grid,
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid,
    .two-column-grid,
    .safety-grid,
    .sources-list,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .question-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.98rem;
    }

    .container {
        padding: 0 14px;
    }

    .navbar {
        top: 0;
        padding: 10px 0;
    }

    .navbar .container {
        gap: 12px;
    }

    .brand-text {
        font-size: 1rem;
        max-width: 210px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-portal-bar {
        display: block;
    }
    
    .hero-brand-title {
        font-size: 1.55rem;
    }

    .hero h1 {
        font-size: 1.65rem;
        letter-spacing: 0.8px;
    }
    
    .hero {
        padding: 120px 0 70px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-logo {
        max-width: 260px;
    }

    .hero-logo img {
        max-height: 280px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 360px;
        padding: 14px 18px;
        margin: 6px 0;
    }

    .cta-buttons,
    .dashboard-actions {
        flex-direction: column;
    }

    .dashboard-header,
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .membership-status {
        text-align: left;
    }

    .auth-section,
    .dashboard-section,
    .admin-section,
    .ask-section {
        padding-top: 105px;
    }

    .auth-card,
    .ask-card,
    .booking-form-container,
    .tab-content {
        padding: 24px 18px;
    }

    .consultation-card,
    .plan-card {
        padding: 24px 18px;
    }

    .price-tag {
        font-size: 2rem;
    }

    .payment-section #card-container,
    .question-form textarea,
    .auth-form input,
    .auth-form textarea,
    .booking-form-container input,
    .booking-form-container select,
    .booking-form-container textarea {
        width: 100%;
    }

    .mobile-portal-bar .btn-primary {
        max-width: none;
    }

    .benefits-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem !important;
    }

    .consultation-options,
    .plan-options,
    .form-row,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-actions .btn-primary,
    .cta-buttons .btn-primary {
        width: 100%;
    }

    .questions-section,
    .subscription-management,
    .empty-state,
    .followup-card,
    .question-card,
    .plan-item {
        padding-left: 16px;
        padding-right: 16px;
    }

    .question-header,
    .plan-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Flash Messages */
.flash-messages {
    margin-top: 100px;
    padding: 20px;
}

.flash-message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 0;
    border-left: 4px solid var(--gold-color);
    background: var(--accent-color);
}

.flash-success {
    border-left-color: #28a745;
    background: #d4edda;
}

.flash-error {
    border-left-color: #dc3545;
    background: #f8d7da;
}

/* Auth Section */
.auth-section {
    padding: 150px 0 100px;
    min-height: 100vh;
    background: var(--secondary-color);
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-top: 4px solid var(--gold-color);
}

.auth-card h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 400;
}

.auth-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-switch {
    text-align: center;
    margin-top: 25px;
    color: var(--text-light);
}

.auth-switch a {
    color: var(--gold-dark);
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Dashboard Section */
.dashboard-section {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: var(--secondary-color);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-top: 4px solid var(--gold-color);
}

.dashboard-header h2 {
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
}

.membership-status {
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.member {
    background: var(--gold-color);
    color: var(--white);
}

.status-badge.non-member {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: 1px solid var(--text-light);
}

.dashboard-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-gold {
    background: var(--gold-color) !important;
    color: var(--white) !important;
    border-color: var(--gold-color) !important;
}

.btn-gold:hover {
    background: var(--gold-dark) !important;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid var(--gold-color) !important;
    color: var(--primary-color) !important;
}

.btn-outline:hover {
    background: var(--gold-color) !important;
    color: var(--white) !important;
}

.btn-admin {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-nav {
    background: var(--gold-color);
    color: var(--white) !important;
    padding: 8px 20px;
}

/* Subscription Management */
.subscription-management {
    background: var(--accent-color);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-left: 4px solid var(--gold-color);
}

.subscription-management h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 400;
}

.subscription-management p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.subscription-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.btn-cancel {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 10px 20px;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #dc3545;
    color: var(--white);
}

/* Questions Section */
.questions-section {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.questions-section h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question-card {
    background: var(--accent-color);
    padding: 25px;
    border-left: 4px solid var(--gold-color);
}

.question-card.answered {
    border-left-color: #28a745;
}

.question-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.topic-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.status-tag {
    padding: 4px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.status-tag.pending {
    background: #fff3cd;
    color: #856404;
}

.status-tag.answered,
.status-tag.delivered,
.status-tag.completed {
    background: #d4edda;
    color: #155724;
}

.status-tag.confirmed {
    background: #cce5ff;
    color: #004085;
}

.status-tag.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.question-text {
    color: var(--text-dark);
    line-height: 1.8;
}

.answer-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.answer-content h4 {
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.answered-date {
    display: block;
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.empty-state {
    text-align: center;
    padding: 50px;
    color: var(--text-light);
}

/* Membership Section */
.membership-section {
    padding: 150px 0 100px;
    min-height: 100vh;
    background: var(--secondary-color);
}

.membership-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-top: 4px solid var(--gold-color);
}

.membership-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-display {
    font-size: 3rem;
    color: var(--gold-dark);
    font-family: Georgia, serif;
}

.price-display span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.benefits-list {
    text-align: left;
    margin: 30px 0;
    padding: 25px;
    background: var(--accent-color);
}

.benefits-list h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

#card-container {
    margin: 20px 0;
    min-height: 90px;
}

.secure-notice {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Ask Question Section */
.ask-section {
    padding: 150px 0 100px;
    min-height: 100vh;
    background: var(--secondary-color);
}

.ask-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-top: 4px solid var(--gold-color);
}

.ask-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.member-notice {
    background: #d4edda;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 4px solid #28a745;
}

.payment-notice {
    background: var(--accent-color);
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--gold-color);
}

.payment-notice a {
    color: var(--gold-dark);
}

.payment-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.payment-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Admin Section */
.admin-section {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: var(--secondary-color);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h2 {
    color: var(--primary-color);
    font-weight: 400;
}

.tab-content {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.tab-content h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 10px;
}

.admin-questions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.admin-question-card {
    background: var(--accent-color);
    padding: 25px;
    border-left: 4px solid var(--gold-color);
}

.admin-question-card.answered {
    border-left-color: #28a745;
    background: #f8f9fa;
}

.question-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.user-email {
    font-weight: 600;
    color: var(--primary-color);
}

.paid-tag {
    background: var(--gold-color);
    color: var(--white);
    padding: 3px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.answer-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.answer-text {
    margin-top: 15px;
    padding: 15px;
    background: var(--white);
    border-left: 3px solid #28a745;
}

/* Users Table */
.users-table-container {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.users-table th,
.users-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.users-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.users-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.member {
    background: var(--gold-color);
    color: var(--white);
}

.status-badge.free {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.status-badge.question {
    background: #3498db;
    color: var(--white);
}

.payment-status {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.payment-status.completed {
    color: #28a745;
}

.payment-status.pending {
    color: #f39c12;
}

.section-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.receipt-link {
    color: var(--gold-dark);
    text-decoration: underline;
}

.receipt-link:hover {
    color: var(--primary-color);
}

.add-question-form {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
}

.add-question-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.add-question-form .form-group {
    margin-bottom: 15px;
}

.add-question-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.add-question-form input,
.add-question-form select,
.add-question-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    font-family: inherit;
    font-size: 1rem;
}

.add-question-form input:focus,
.add-question-form select:focus,
.add-question-form textarea:focus {
    outline: none;
    border-color: var(--gold-color);
}

.action-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #e0e0e0;
    color: #666;
}

.action-tag.signup {
    background: #d4edda;
    color: #155724;
}

.action-tag.login {
    background: #cce5ff;
    color: #004085;
}

.action-tag.logout {
    background: #f8d7da;
    color: #721c24;
}

.action-tag.failed {
    background: #f8d7da;
    color: #721c24;
}

.action-tag.question {
    background: #fff3cd;
    color: #856404;
}

.action-tag.member {
    background: var(--gold-color);
    color: var(--primary-color);
}

.action-tag.cancelled {
    background: #e2e3e5;
    color: #383d41;
}

/* Pricing Cards */
.membership-promo {
    padding: 100px 0;
    background: var(--white);
}

.membership-promo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.3);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--gold-color);
    transform: scale(1.05);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-color);
    color: var(--white);
    padding: 5px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--secondary-color);
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

.pricing-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.pricing-note-center {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

/* Promo Cards (without prices) */
.promo-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.promo-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.3);
    position: relative;
}

.promo-card.featured {
    border: 2px solid var(--gold-color);
    transform: scale(1.05);
}

.promo-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.promo-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.promo-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.promo-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--secondary-color);
}

.promo-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

@media (max-width: 768px) {
    .promo-options {
        grid-template-columns: 1fr;
    }
    
    .promo-card.featured {
        transform: none;
        order: -1;
    }
}

.membership-link {
    font-size: 0.9rem;
    margin-top: 10px;
}

.membership-link a {
    color: var(--gold-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .membership-status {
        text-align: center;
        margin-top: 15px;
    }
    
    .dashboard-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Education Library Styles */
.education-section {
    padding: 80px 0;
    background: var(--accent-color);
    min-height: 60vh;
}

.education-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.education-section h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.education-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.education-card-content {
    padding: 30px;
}

.education-card .post-date {
    color: var(--gold-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.education-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin: 15px 0;
    line-height: 1.4;
}

.education-card .post-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.education-card .read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.education-card .read-more:hover {
    color: var(--gold-color);
}

/* Article Page Styles */
.article-section {
    padding: 60px 0;
    background: var(--white);
    min-height: 60vh;
}

.education-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.back-link:hover {
    color: var(--gold-color);
}

.education-article h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-meta .post-date {
    color: var(--gold-color);
    font-weight: 600;
}

.article-meta .author {
    margin-left: 15px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 1.5em;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-color);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Admin Education Styles */
.admin-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.post-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 10px 0;
}

.post-summary {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.post-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    transition: background 0.3s ease;
}

.btn-danger:hover {
    background: #c82333;
}

.unpublished {
    opacity: 0.7;
    border-left: 4px solid var(--gold-color);
}

/* Education Form Styles */
.form-container.wide {
    max-width: 800px;
}

.education-form textarea {
    font-family: inherit;
    resize: vertical;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .education-article h1 {
        font-size: 1.8rem;
    }
    
    .article-footer {
        flex-direction: column;
    }
    
    .admin-actions {
        flex-direction: column;
    }
}

/* Coming Soon Tag */
.coming-soon-tag {
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    text-align: center;
    font-size: 0.95rem;
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: rgba(90, 36, 52, 0.1);
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold-color);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--primary-color);
}

/* Footer Social Links */
.footer-social h4 {
    color: var(--gold-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}


/* Education Card Images */
.education-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.education-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Featured Image */
.article-featured-image {
    margin: 2rem 0;
    border-radius: 0;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Admin Form Image Preview */
.current-image {
    margin-top: 15px;
    padding: 15px;
    background: var(--secondary-color);
}

.preview-image {
    max-width: 300px;
    height: auto;
    margin: 10px 0;
    border: 2px solid var(--gold-color);
}

.file-input {
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--gold-color);
    width: 100%;
    cursor: pointer;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Emergency Banner */
.emergency-banner {
    background-color: #c9a227;
    color: #5a2434;
    text-align: center;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.emergency-banner strong {
    font-weight: 600;
}

.social-section {
    padding: 80px 0;
    background: var(--cream);
}

.social-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.social-feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.social-profile-card {
    background: var(--white);
    padding: 35px;
    border: 2px solid var(--gold-color);
    text-align: center;
}

.social-profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-profile-header h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.4rem;
    margin: 0;
}

.social-profile-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.social-profile-bio {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-content-preview {
    background: var(--white);
    padding: 35px;
    border: 2px solid var(--primary-color);
}

.social-content-preview h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.social-topics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.social-topic-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--secondary-color);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.topic-icon {
    font-size: 1.3rem;
}

.social-cta-text {
    text-align: center;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}

.social-link span {
    font-size: 0.85rem;
    margin-top: 4px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

@media (max-width: 768px) {
    .social-feed-grid {
        grid-template-columns: 1fr;
    }
    .social-topics {
        grid-template-columns: 1fr;
    }
}

.consultation-section,
.wellness-plans-section {
    padding: 80px 0;
    background: var(--cream);
}

.consultation-section h2,
.wellness-plans-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .consultation-section,
    .wellness-plans-section {
        padding: 100px 0 60px;
    }

    .booking-form-container h3 {
        font-size: 1.25rem;
    }
}

.consultation-options,
.plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.consultation-card,
.plan-card {
    background: var(--white);
    padding: 35px;
    border: 2px solid var(--primary-color);
    text-align: center;
    position: relative;
}

.consultation-card.featured,
.plan-card.featured {
    border-color: var(--gold-color);
    box-shadow: var(--shadow-hover);
}

.consultation-card h3,
.plan-card h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.consultation-card ul,
.plan-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.consultation-card li,
.plan-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.consultation-card li:before,
.plan-card li:before {
    content: "\2713 ";
    color: var(--gold-color);
    font-weight: bold;
    margin-right: 8px;
}

.booking-form-container {
    max-width: 700px;
    margin: 40px auto;
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--primary-color);
}

.booking-form-container h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.featured-tag {
    display: inline-block;
    background: var(--gold-color);
    color: var(--white);
    padding: 8px 14px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--secondary-color);
}

.payment-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.btn-full {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1.1rem;
}

.error-message {
    color: #c0392b;
    font-size: 0.9rem;
    margin-top: 10px;
}

.my-plans-section {
    margin-top: 50px;
}

.my-plans-section h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.plan-item {
    background: var(--white);
    padding: 25px;
    border: 1px solid var(--secondary-color);
    margin-bottom: 20px;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.plan-type-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-goals {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.plan-content-box {
    background: var(--secondary-color);
    padding: 25px;
    margin-top: 15px;
}

.plan-content-box h4 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.plan-text {
    color: var(--text-dark);
    line-height: 1.8;
}

.plan-pending-note {
    color: var(--gold-dark);
    font-style: italic;
    padding: 15px;
    background: #fef9e7;
    border-left: 3px solid var(--gold-color);
}

@media (max-width: 768px) {
    .consultation-options,
    .plan-options {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.tip-of-day-featured {
    background: var(--white);
    border: 2px solid var(--gold-color);
    padding: 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.tip-day-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold-color);
    color: var(--white);
    padding: 8px 20px;
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.tip-featured-image {
    width: 100%;
    max-height: 350px;
    overflow: hidden;
}

.tip-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-featured-content {
    padding: 35px 40px;
}

.tip-featured-content h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin: 10px 0 15px;
    line-height: 1.3;
}

.tip-summary {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.previous-tips {
    margin-top: 50px;
}

.previous-tips h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-color);
}

@media (max-width: 768px) {
    .tip-featured-content {
        padding: 25px 20px;
    }
    .tip-featured-content h3 {
        font-size: 1.4rem;
    }
}

.article-summary-box {
    background: var(--secondary-color);
    padding: 20px 25px;
    border-left: 4px solid var(--gold-color);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.content-locked {
    text-align: center;
    padding: 50px 30px;
    background: var(--secondary-color);
    border: 2px dashed var(--gold-color);
    margin: 30px 0;
}

.content-locked .lock-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.content-locked h3 {
    color: var(--primary-color);
    font-family: Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.content-locked p {
    color: var(--text-dark);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tip-featured-video {
    width: 100%;
    background: #000;
    text-align: center;
}

.tip-featured-video video {
    width: 100%;
    max-height: 400px;
}

.article-featured-video {
    margin-bottom: 30px;
    background: #000;
    text-align: center;
}

.article-featured-video video {
    width: 100%;
    max-height: 500px;
}
