/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {  
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fefefe;
}

/* Fix horizontal overflow on mobile */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

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

/* Make sure all containers and grids don't overflow */
.container,
.section-grid,
.blog-grid,
.video-grid,
.wellness-grid,
.guides-grid,
.qa-grid,
.news-grid,
.values-grid,
.quotes-grid,
.resources-grid,
.spotlight-grid,
.schedule-grid,
.faq-grid,
.social-grid {
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.8rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: #4a4a4a;
}

/* Color Variables */
:root {
    --primary-color: #d4a574; /* Soft gold */
    --secondary-color: #e8b4cb; /* Blush pink */
    --accent-color: #f7e7ce; /* Warm beige */
    --text-dark: #2d2d2d; /* Charcoal */
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --border-color: #e5e5e5;
    --success-color: #a8d5a8;
    --warning-color: #f4c2a1;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c99962;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.8) 0%, rgba(232, 180, 203, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgb(253, 255, 255);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.945);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Preview Sections */
.preview-sections {
    padding: 100px 0;
    background: var(--white);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.preview-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.preview-image {
    height: 250px;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-card:hover .preview-image img {
    transform: scale(1.1);
}

.preview-content {
    padding: 2rem;
}

.preview-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.preview-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-note {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #555;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin-bottom: 0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #c99962;
    transform: translateY(-3px);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.mission-section {
    padding: 80px 0;
    background: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.founder-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vision-point {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.vision-point h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vision-point p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Blog Page Styles */
.blog-categories {
    padding: 60px 0 40px;
    background: var(--white);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.blog-posts {
    padding: 40px 0 80px;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.audio-read-btn {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin-left: auto;
}

.audio-read-btn:hover {
    opacity: 1;
}

.blog-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-cta {
    background: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.inline-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.inline-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
}

.inline-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Grace TV Styles */
.video-schedule {
    padding: 80px 0;
    background: var(--white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.schedule-day {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.schedule-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.featured-video {
    padding: 80px 0;
    background: var(--light-gray);
}

.featured-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.video-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.video-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.video-card .video-thumbnail {
    height: 180px;
    position: relative;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-card .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.video-card .video-info {
    padding: 1.5rem;
}

.video-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.video-card .video-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.subscribe-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    text-align: center;
}

.subscribe-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.subscribe-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.subscribe-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}

.video-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Wellness Page Styles */
.wellness-categories {
    padding: 80px 0;
    background: var(--white);
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.wellness-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.wellness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.wellness-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.wellness-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.wellness-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.wellness-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.wellness-benefits li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.wellness-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.expert-quotes {
    padding: 80px 0;
    background: var(--light-gray);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.quote-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.quote-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.wellness-resources {
    padding: 80px 0;
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.resource-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.resource-image {
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-content {
    padding: 2rem;
    text-align: center;
}

.resource-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.wellness-quiz {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.quiz-content {
    max-width: 700px;
    margin: 0 auto;
}

.quiz-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quiz-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.quiz-preview {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.quiz-question h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quiz-option {
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

/* AI & Tech Page Styles */
.tech-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tech-guides {
    padding: 80px 0;
    background: var(--light-gray);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.guide-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guide-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guide-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tech-tips {
    padding: 80px 0;
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.tip-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.tip-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.featured-tools {
    padding: 80px 0;
    background: var(--light-gray);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tool-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tool-image {
    height: 150px;
    overflow: hidden;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-image img {
    transform: scale(1.05);
}

.tool-content {
    padding: 2rem;
    text-align: center;
}

.tool-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tool-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tool-rating {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tech-support {
    padding: 80px 0;
    background: var(--white);
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-content h2 {
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.support-option {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-option:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-option h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.support-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Ask Grace Page Styles */
.question-form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.form-intro h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.privacy-note {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.privacy-note p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.ask-grace-form {
    max-width: 600px;
    margin: 0 auto;
}

.ask-grace-form .form-group {
    display: block;
    margin-bottom: 2rem;
}

.ask-grace-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ask-grace-form input,
.ask-grace-form select,
.ask-grace-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.ask-grace-form input:focus,
.ask-grace-form select:focus,
.ask-grace-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ask-grace-form textarea {
    resize: vertical;
    min-height: 150px;
}

.character-count {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-group {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 400 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    accent-color: var(--primary-color);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.recent-qa {
    padding: 80px 0;
    background: var(--light-gray);
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.qa-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.qa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.question-category {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.qa-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.question-preview {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.grace-response h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.grace-response p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.grace-promise {
    padding: 80px 0;
    background: var(--white);
}

.promise-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.promise-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.promise-text h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.promise-text .large-text {
    margin-bottom: 2.5rem;
}

.promise-points {
    display: grid;
    gap: 2rem;
}

.promise-point h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.promise-point p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.success-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Trending Page Styles */
.featured-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.story-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.story-text h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.story-excerpt {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.news-categories {
    padding: 60px 0 40px;
    background: var(--white);
}

.news-grid-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 180px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.news-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #c99962;
}

.weekly-roundup {
    padding: 80px 0;
    background: var(--light-gray);
}

.roundup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.roundup-text h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.roundup-text .large-text {
    margin-bottom: 2.5rem;
}

.roundup-benefits {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.roundup-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-container .newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-container .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
}

.form-container .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-container .form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.community-spotlight {
    padding: 80px 0;
    background: var(--white);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.spotlight-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-5px);
}

.spotlight-content h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.spotlight-content p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info .large-text {
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.method-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.method-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.method-info a:hover {
    color: #c99962;
}

.response-time {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.response-time p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.response-time a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form .form-group {
    display: block;
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.social-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.social-card .social-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.social-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-faq {
    padding: 80px 0;
    background: var(--white);
}

/* --- Community Page Enhanced Styles --- */
.community-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    overflow: hidden;
}
.community-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #b794f4 10%, #c99962 70%), url('https://images.pexels.com/photos/3768911/pexels-photo-3768911.jpeg?auto=compress&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.7;
    z-index: 1;
}
.community-hero .container {
    position: relative;
    z-index: 2;
}
.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.page-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
}

.community-info {
    background: #f8f9fb;
    padding: 60px 0 80px 0;
}
.community-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(127, 156, 245, 0.08), 0 1.5px 8px rgba(183, 148, 244, 0.05);
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 32px 32px 32px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.community-card:hover {
    box-shadow: 0 8px 40px rgba(127, 156, 245, 0.16), 0 3px 16px rgba(183, 148, 244, 0.10);
}
.community-card h2 {
    font-size: 2rem;
    color: #c99962;
    margin-bottom: 18px;
    font-weight: 600;
}
.community-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    color: #444;
    font-size: 1.13rem;
}
.community-card ul li {
    margin-bottom: 14px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-primary.btn-large {
    font-size: 1.15rem;
    padding: 14px 38px;
    border-radius: 30px;
    background: linear-gradient(90deg, #c99962 0%, #c99962 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(127, 156, 245, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.btn-primary.btn-large:hover {
    background: linear-gradient(90deg, #b794f4 0%, #7f56d9 100%);
    box-shadow: 0 4px 16px rgba(127, 156, 245, 0.18);
    color: #fff;
    text-decoration: none;
}

/* Prevent large fixed-position nav or hero from overflowing */
.header,
.hero,
.page-hero {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Responsive */
@media (max-width: 600px) {
    .community-hero {
        min-height: 200px;
        padding: 30px 0;
    }
    .community-card {
        padding: 24px 8px 20px 8px;
    }
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-content,
    .founder-content,
    .intro-content,
    .story-content,
    .promise-content,
    .roundup-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-content {
        text-align: center;
    }
    
    .video-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .preview-card,
    .blog-card,
    .news-card,
    .wellness-card,
    .guide-card {
        margin: 0 10px;
    }
    
    .subscribe-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .inline-form {
        flex-direction: column;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .preview-sections,
    .blog-posts,
    .video-grid-section,
    .wellness-categories,
    .tech-guides,
    .question-form-section,
    .news-grid-section,
    .contact-form-section {
        padding: 60px 0;
    }
    
    .newsletter-section,
    .mission-section,
    .founder-section,
    .values-section,
    .vision-section,
    .expert-quotes,
    .wellness-resources,
    .wellness-quiz,
    .tech-intro,
    .tech-tips,
    .featured-tools,
    .tech-support,
    .recent-qa,
    .grace-promise,
    .faq,
    .featured-story,
    .weekly-roundup,
    .community-spotlight,
    .social-section,
    .contact-faq {
        padding: 60px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-grid,
    .blog-grid,
    .video-grid,
    .wellness-grid,
    .guides-grid,
    .qa-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lightbox-content {
        width: 95%;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hamburger,
    .scroll-top,
    .video-lightbox,
    .success-message {
        display: none !important;
    }
    
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .page-hero {
        margin-top: 0;
        padding: 2rem 0;
    }
    
    .preview-card,
    .blog-card,
    .news-card,
    .wellness-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

