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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4a5568;
    background-color: #ffffff;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0; /* Reduced from 1rem to 0.75rem */
    flex-direction: row-reverse;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 70px;
    width: auto;
    margin: 0.5rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    font-weight: 500;
    flex-wrap: nowrap;
    font-size: 0.85rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.85rem;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #8b7d6b;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #a8c090, #8b7d6b);
    transition: width 0.3s;
}

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

.nav-links a.active {
    color: #a8c090;
    background: rgba(168, 192, 144, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
}

/* Homepage Hero Section */
.hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding-top: 90px;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1200px;
}

/* Page Hero Section (for all other pages) */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 900;
}

.page-hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a5568;
    font-weight: 400;
    font-style: italic;
}

.page-hero p {
    font-size: 1.2rem;
    color: #6b7b5a;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Hero Color Themes */
.page-hero.about {
    background: linear-gradient(135deg, #e3f5f0 0%, #d8f0e8 100%);
}

.page-hero.aged-care {
    background: linear-gradient(135deg, #f5ebe3 0%, #f0e2d8 100%);
}

.page-hero.employment {
    background: linear-gradient(135deg, #f3e8ff 0%, #e8d5ff 100%);
}

.page-hero.ndis-supports {
    background: linear-gradient(135deg, #e8f0e3 0%, #dfe8da 100%);
}

.page-hero.ilo {
    background: linear-gradient(135deg, #f5f2e3 0%, #f0ede2 100%);
}

.page-hero.support-coordination {
    background: linear-gradient(135deg, #f0e8f0 0%, #e8dde8 100%);
}

.page-hero.contact {
    background: linear-gradient(135deg, #e3f5f0 0%, #d8f0e8 100%);
}

.page-hero.referrals {
    background: linear-gradient(135deg, #e6f3ff 0%, #d1e9ff 100%);
}

.page-hero.blog {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
}

.page-hero.privacy {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ===========================================
   BLOG ARTICLE STYLES
   =========================================== */

/* Article Hero Image */
.article-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 90px; /* Push down below fixed header */
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.category {
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Article Content */
.newspaper-article {
    background: white;
    padding: 40px 0;
}

.article-header {
    margin-bottom: 40px;
    border-bottom: 3px solid var(--theme-color);
    padding-bottom: 20px;
}

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

.back-link:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.byline {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.role {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.article-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    line-height: 1.7;
    color: #1a1a1a;
}

.column-left, .column-right {
    font-size: 1rem;
}

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #2d2d2d;
    border-left: 4px solid var(--theme-color);
    padding-left: 20px;
    font-weight: 500;
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-box {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
    color: white;
}

.highlight-box h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-box p {
    margin: 0;
    font-size: 0.95rem;
    color: white;
}

.info-box {
    background: #f8f8f8;
    border-left: 5px solid var(--theme-color);
    padding: 20px;
    margin: 25px 0;
}

.info-box h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 5px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

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

.quote-box {
    background: var(--theme-color);
    color: white;
    padding: 25px;
    margin: 30px 0;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}

.quote-box cite {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.9;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-links h4 {
    color: var(--theme-color);
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.related-links ul {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 8px;
}

.related-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--theme-color);
    padding-bottom: 1px;
}

.related-links a:hover {
    color: var(--theme-color);
}

/* Article Photos */
.article-photo {
    margin: 30px 0;
    text-align: center;
}

.article-photo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.article-photo img:hover {
    transform: scale(1.02);
}

.photo-caption {
    margin-top: 10px;
    font-style: italic;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* ===========================================
   BLOG ARTICLE COLOR THEMES
   =========================================== */

/* Orange Theme - Group Homes */
.blog-theme-orange {
    --theme-color: #ff6b35;
    --theme-light: #ff8c42;
    --theme-shadow: rgba(255,107,53,0.3);
    --theme-shadow-hover: rgba(255,107,53,0.4);
}

.blog-theme-orange .category {
    background: #ff6b35;
}

/* Peacock Blue Theme - Support Coordination */
.blog-theme-peacock {
    --theme-color: #005f73;
    --theme-light: #268197;
    --theme-shadow: rgba(0,95,115,0.3);
    --theme-shadow-hover: rgba(0,95,115,0.4);
}

.blog-theme-peacock .category {
    background: #005f73;
}

/* Forest Green Theme - Plan Reviews */
.blog-theme-forest {
    --theme-color: #2d5016;
    --theme-light: #4a7c2a;
    --theme-shadow: rgba(45,80,22,0.3);
    --theme-shadow-hover: rgba(45,80,22,0.4);
}

.blog-theme-forest .category {
    background: #2d5016;
}

/* Deep Purple Theme - Complex Care */
.blog-theme-purple {
    --theme-color: #4c1d95;
    --theme-light: #7c3aed;
    --theme-shadow: rgba(76,29,149,0.3);
    --theme-shadow-hover: rgba(76,29,149,0.4);
}

.blog-theme-purple .category {
    background: #4c1d95;
}

/* Teal Theme - Behaviour Communication */
.blog-theme-teal {
    --theme-color: #0f766e;
    --theme-light: #14b8a6;
    --theme-shadow: rgba(15,118,110,0.3);
    --theme-shadow-hover: rgba(15,118,110,0.4);
}

.blog-theme-teal .category {
    background: #0f766e;
}

/* Coral Theme - Neurodivergent-Led */
.blog-theme-coral {
    --theme-color: #dc2626;
    --theme-light: #ef4444;
    --theme-shadow: rgba(220,38,38,0.3);
    --theme-shadow-hover: rgba(220,38,38,0.4);
}

.blog-theme-coral .category {
    background: #dc2626;
}

/* Indigo Theme - Sensory-Friendly */
.blog-theme-indigo {
    --theme-color: #3730a3;
    --theme-light: #6366f1;
    --theme-shadow: rgba(55,48,163,0.3);
    --theme-shadow-hover: rgba(55,48,163,0.4);
}

.blog-theme-indigo .category {
    background: #3730a3;
}

/* Amber Theme - Remote Communities */
.blog-theme-amber {
    --theme-color: #d97706;
    --theme-light: #f59e0b;
    --theme-shadow: rgba(217,119,6,0.3);
    --theme-shadow-hover: rgba(217,119,6,0.4);
}

.blog-theme-amber .category {
    background: #d97706;
}

/* Rose Gold Theme - Trilogy Partnership */
.blog-theme-rose {
    --theme-color: #be185d;
    --theme-light: #ec4899;
    --theme-shadow: rgba(190,24,93,0.3);
    --theme-shadow-hover: rgba(190,24,93,0.4);
}

.blog-theme-rose .category {
    background: #be185d;
}

/* Sage Green Theme - Meet Julie */
.blog-theme-sage {
    --theme-color: #65a30d;
    --theme-light: #84cc16;
    --theme-shadow: rgba(101,163,13,0.3);
    --theme-shadow-hover: rgba(101,163,13,0.4);
}

.blog-theme-sage .category {
    background: #65a30d;
}

/* ===========================================
   END BLOG ARTICLE STYLES
   =========================================== */

/* ===========================================
   BLOG PAGE STYLES
   =========================================== */

/* Blog Hero Customization */
.page-hero.blog {
    padding-top: 140px;
}

.page-hero.blog h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff8c42;
}

.page-hero.blog p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #4a5568;
    font-weight: 500;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background: #f9f7f4;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

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

.featured-post .post-content {
    padding: 30px;
}

.featured-post h2 {
    font-size: 1.8rem;
    margin: 15px 0;
    line-height: 1.3;
}

.featured-post h2 a {
    color: #1a1a1a;
    text-decoration: none;
}

.featured-post h2 a:hover {
    color: #ff8c42;
}

/* Category Filter */
.category-filter {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.category-filter h3 {
    margin-bottom: 20px;
    color: #ff8c42;
    font-size: 1.3rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #ff8c42;
    background: transparent;
    color: #ff8c42;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff8c42;
    color: white;
}

/* Blog Grid */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: stretch;
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.blog-post .post-image {
    flex: 0 0 300px;
}

.blog-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post .post-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.blog-post h3 {
    font-size: 1.4rem;
    margin: 15px 0;
    line-height: 1.3;
}

.blog-post h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-post h3 a:hover {
    color: #ff8c42;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Post Categories */
.post-category {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.post-category.ndis-insights { background: #005f73; color: white; }
.post-category.complex-care { background: #4c1d95; color: white; }
.post-category.neurodivergent-life { background: #dc2626; color: white; }
.post-category.regional-living { background: #d97706; color: white; }
.post-category.aged-care { background: #be185d; color: white; }
.post-category.team-stories { background: #65a30d; color: white; }

/* Post Meta */
.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.post-meta .author {
    font-weight: 500;
}

/* Read More Button - Blog Page Version */
.blog-post .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #ff8c42;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: auto;
    align-self: flex-start;
}

.featured-post .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #ff8c42;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 20px; /* Fixed spacing for featured post */
}

.blog-post .read-more:hover,
.featured-post .read-more:hover {
    background: #e76f51;
    transform: translateY(-2px);
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sidebar-widget.nd-toolbox {
    border-left: 4px solid #dc2626; /* Coral for ND toolbox */
}

.sidebar-widget:nth-child(2) {
    border-left: 4px solid #ff8c42; /* Orange */
}

.sidebar-widget:nth-child(3) {
    border-left: 4px solid #65a30d; /* Sage green */
}

.sidebar-widget h3 {
    color: #ff8c42;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.sidebar-widget p {
    color: #666;
    line-height: 1.6;
}

.popular-posts,
.category-list,
.resource-links {
    list-style: none;
    padding: 0;
}

.popular-posts li,
.category-list li,
.resource-links li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.popular-posts li:last-child,
.category-list li:last-child,
.resource-links li:last-child {
    border-bottom: none;
}

.popular-posts a,
.category-list a,
.resource-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular-posts a:hover,
.category-list a:hover,
.resource-links a:hover {
    color: #ff8c42;
}

.category-list span {
    font-size: 0.8rem;
    color: #888;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #ff8c42;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e76f51;
    transform: translateY(-2px);
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff8c42;
}

.subscribe-btn {
    width: 100%;
    padding: 12px;
    background: #ff8c42;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #e76f51;
}

/* Toolbox Features */
.toolbox-features {
    margin: 15px 0 20px 0;
}

.feature {
    margin-bottom: 15px;
}

.feature strong {
    display: block;
    color: #ff8c42;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.feature span {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===========================================
   END BLOG PAGE STYLES
   =========================================== */

/* Common Section Styles */
.intro-section {
    padding: 50px 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #6b7b5a;
}

/* Stats/Features Sidebar */
.intro-stats, .intro-features, .approach-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-item, .feature-item {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #a8c090;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #a8c090;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7b5a;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6b7b5a;
    line-height: 1.3;
}

/* Common Section Headers */
h2 strong {
    font-weight: 700;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    font-weight: 700;
}

section h2.center {
    text-align: center;
    margin-bottom: 3rem;
}

/* Team/People Grids */
.team-grid, .services-grid {
    display: grid;
    gap: 2rem;
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-member {
    background: #f9f7f4;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
}

.team-member.featured {
    background: linear-gradient(135deg, #e3f5f0 0%, #d8f0e8 100%);
    border: 2px solid #a8c090;
}

.team-member:hover {
    transform: translateY(-3px);
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 600;
}

.member-info h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #a8c090;
    font-weight: 600;
}

.member-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #6b7b5a;
}

.member-info p:last-child {
    margin-bottom: 0;
}

/* Services Section (Homepage) */
.services {
    padding: 80px 0 50px;
    background: #ffffff;
    margin-top: 30px;
}

.services-intro {
    text-align: center;
    margin-bottom: 0.2rem;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4a5568;
    font-weight: 300;
}

.services-intro p {
    font-size: 1.1rem;
    color: #6b7b5a;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    padding: 1.2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Service Card Themes */
.service-card.ndis-supports {
    background: linear-gradient(135deg, #e8f0e3 0%, #dfe8da 100%);
}

.service-card.support-coord {
    background: linear-gradient(135deg, #f0e8f0 0%, #e8dde8 100%);
}

.service-card.aged-care {
    background: linear-gradient(135deg, #f5ebe3 0%, #f0e2d8 100%);
}

.service-card.ilo {
    background: linear-gradient(135deg, #f5f2e3 0%, #f0ede2 100%);
}

.service-card.nd-mentoring {
    background: linear-gradient(135deg, #e3f5f0 0%, #d8f0e8 100%);
}

.service-card.recovery-coaching {
    background: linear-gradient(135deg, #f5e8e3 0%, #f0ddd8 100%);
}

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

.service-card .card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 600;
}

.service-card p {
    color: #6b7b5a;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f6f1 0%, #f0f2ed 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #6b7b5a;
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Common Button Styles */
.btn-primary, .btn-secondary, .btn-white, .btn-light {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #a8c090 0%, #8b7d6b 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 192, 144, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #a8c090;
    border: 2px solid #a8c090;
}

.btn-secondary:hover {
    background: #a8c090;
    color: white;
}

.btn-white {
    background: white;
    color: #6b7b5a;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.btn-light {
    background: white;
    color: #6b7b5a;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

/* Contact CTA Section */
.contact-cta {
    padding: 50px 0;
    text-align: center;
}

.contact-cta.sage {
    background: linear-gradient(135deg, #b5c79e 0%, #a8b59a 100%);
    color: #2d3748;
}

.contact-cta.primary {
    background: linear-gradient(135deg, #a8c090 0%, #8b7d6b 100%);
    color: white;
}

.contact-cta.support-coordination {
    background: linear-gradient(135deg, #f0e8f0 0%, #b197c7 100%);
    color: #2d3748;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Support Coordination specific styles */
.support-coordination .feature-box,
.support-coordination .benefit-card {
    border-left: 4px solid #b197c7;
}

/* Remote features grid */
.remote-features {
    display: grid;
    gap: 1.5rem;
}

/* Support coordination list bullets */
.support-coordination .level-card li::before,
.support-coordination .service-category li::before,
.support-coordination .remote-benefits li::before {
    color: #b197c7;
}

/* Step numbers for support coordination */
.support-coordination .step-number {
    background: #b197c7;
}

/* Footer Navigation */
.footer-nav {
    font-size: 0.85rem;
}

.footer-nav a {
    font-size: 0.85rem;
    padding: 0.8rem;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.4rem;
}

.footer-links a {
    text-decoration: none;
    color: #6b7b5a;
    font-weight: 350;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4a5568;
}

/* Footer */
footer {
    background: #4a5568;
    color: white;
    text-align: center;
    padding: 0.1rem;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .hero {
        width: 1200px;
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .hero {
        max-width: 100%;
        height: calc(100vw / 4);
        max-height: 280px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: calc(100vw / 4);
        max-height: 200px;
        min-height: 150px;
    }
    
    .nav-links {
        display: none;
    }
    
    nav {
        justify-content: center;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero h2 {
        font-size: 1.2rem;
    }

    .intro-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Blog Article Mobile Styles */
    .article-hero {
        height: 250px;
    }

    .hero-overlay {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-body {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    /* Blog Page Mobile Styles */
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post {
        flex-direction: column;
    }

    .blog-post .post-image {
        flex: none;
        height: 200px;
    }

    .filter-buttons {
        justify-content: center;
    }

    .page-hero.blog h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: calc(100vw / 4);
        max-height: 120px;
        min-height: 100px;
    }
}

/* Print styles for newspaper feel */
@media print {
    .article-body {
        column-count: 2;
        column-gap: 40px;
    }
}