/*
Theme Name: Example Organisation Theme
Theme URI: https://thinkingforword.com
Author: Thinking ForWord
Author URI: https://thinkingforword.com
Description: Modern corporate theme for The Example Organisation showcase site. Demonstrates AI-powered assistants across multiple sectors.
Version: 3.1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: example-org
Tags: business, corporate, ai, showcase, responsive
*/

/* ========================================
   ANIMATIONS & VISUAL ENHANCEMENTS
======================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animate sections on page load */
.hero {
    animation: fadeIn 0.8s ease-out;
}

section {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(4) { animation-delay: 0.3s; }
section:nth-child(5) { animation-delay: 0.4s; }

/* Sector cards stagger animation */
.sector-card {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.sector-card:nth-child(1) { animation-delay: 0.1s; }
.sector-card:nth-child(2) { animation-delay: 0.2s; }
.sector-card:nth-child(3) { animation-delay: 0.3s; }
.sector-card:nth-child(4) { animation-delay: 0.4s; }

/* Tool cards stagger animation */
.tool-card-link {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.tool-card-link:nth-child(1) { animation-delay: 0.1s; }
.tool-card-link:nth-child(2) { animation-delay: 0.2s; }
.tool-card-link:nth-child(3) { animation-delay: 0.3s; }
.tool-card-link:nth-child(4) { animation-delay: 0.4s; }

/* ========================================
   RESET & BASE STYLES
======================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* ========================================
   HEADER & NAVIGATION
======================================== */

.site-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    padding: 20px 0;
}

.site-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.site-header h1 a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-header h1 a:hover {
    opacity: 0.9;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: white;
    text-decoration: none;
    padding: 28px 20px;
    display: block;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover {
    background: rgba(255,255,255,0.1);
    border-bottom-color: #5dade2;
}

/* Dropdown Menu Styling */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    opacity: 0.7;
    margin-left: 5px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    color: #1e3c72;
    text-decoration: none;
    padding: 12px 25px;
    display: block;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sub-menu a:hover {
    background: #f8f9fa;
    border-left-color: #1e3c72;
    padding-left: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.menu-toggle .menu-icon {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: white;
    position: relative;
}

.menu-toggle .menu-icon::before,
.menu-toggle .menu-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    left: 0;
}

.menu-toggle .menu-icon::before {
    top: -6px;
}

.menu-toggle .menu-icon::after {
    bottom: -6px;
}

/* Active/Current Menu Items */
.current-menu-item > a,
.current_page_item > a {
    border-bottom-color: #5dade2;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        width: 100%;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255,255,255,0.1);
        margin-top: 15px;
        border-radius: 8px;
        padding: 15px 0;
        gap: 0;
    }
    
    .nav-menu.toggled {
        display: flex;
    }
    
    .nav-menu > li > a {
        padding: 15px 25px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .nav-menu > li > a:hover {
        border-left-color: #5dade2;
        background: rgba(255,255,255,0.15);
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-item-has-children.open > .sub-menu {
        max-height: 500px;
    }
    
    .sub-menu a {
        color: white;
        padding-left: 45px;
    }
    
    .sub-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: #5dade2;
    }
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #2c3e50;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px;
    animation: drift 20s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 35px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1px;
    color: #1a202c;
}

.hero .subheading {
    font-size: 1.5rem;
    margin-bottom: 25px;
    opacity: 0.85;
    line-height: 1.75;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out;
    text-shadow: none;
    color: #4a5568;
}

.hero .supporting {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 35px;
    padding: 22px 45px;
    background: #ffffff;
    backdrop-filter: none;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid #e5e7eb;
    animation: fadeInUp 1.2s ease-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    color: #2c3e50;
}

.hero .supporting:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    border-color: #d1d5db;
}

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

/* ========================================
   CONTENT SECTIONS
======================================== */

section {
    padding: 80px 20px;
    background: white;
    margin-bottom: 2px;
}

section:nth-child(even) {
    background: #fafbfc;
}

section h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1e3c72;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

section > .container > p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SECTORS GRID - 2x2
======================================== */

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.sector-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 6px solid;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sector-card:hover::before {
    opacity: 1;
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.sector-card.charity {
    border-left-color: #3498db;
}

.sector-card.charity:hover {
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.3);
}

.sector-card.professional {
    border-left-color: #27ae60;
}

.sector-card.professional:hover {
    box-shadow: 0 20px 60px rgba(39, 174, 96, 0.3);
}

.sector-card.health {
    border-left-color: #f39c12;
}

.sector-card.health:hover {
    box-shadow: 0 20px 60px rgba(243, 156, 18, 0.3);
}

.sector-card.education {
    border-left-color: #9b59b6;
}

.sector-card.education:hover {
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.3);
}

.sector-card h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.sector-card .icon {
    font-size: 2rem;
}

.sector-card .focus {
    font-weight: 700;
    color: #7f8c8d;
    margin-bottom: 12px;
    margin-top: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sector-card ul {
    list-style: none;
    padding-left: 0;
}

.sector-card li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.sector-card li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ========================================
   TOOLS SECTION
======================================== */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.tool-card-link {
    text-decoration: none;
    display: block;
}

.tool-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 5px solid #1e3c72;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card-link:hover .tool-card {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
    border-top-color: #764ba2;
}

.tool-card-link:hover .tool-card::before {
    opacity: 1;
}

.tool-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.tool-card-link:hover .tool-icon {
    transform: scale(1.15) rotate(5deg);
}

.tool-card h4 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #1e3c72;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tool-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #1e3c72;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.tool-card-link:hover .learn-more {
    color: #764ba2;
    gap: 12px;
}

.tool-card-link:hover .learn-more::after {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIBILITY SECTION
======================================== */

.responsibility {
    background: #1e3c72;
    color: #ffffff;
    padding: 60px 20px;
}

.responsibility h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.responsibility p {
    color: #ffffff;
    opacity: 1;
    font-size: 1.2rem;
    line-height: 1.8;
}

.responsibility ul {
    list-style: none;
    margin-top: 30px;
}

.responsibility li {
    padding: 15px 0;
    font-size: 1.2rem;
    padding-left: 35px;
    position: relative;
    color: #ffffff;
    line-height: 1.6;
}

.responsibility li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5dade2;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Ensure all text elements in responsibility section are white */
.responsibility * {
    color: #ffffff !important;
}

.responsibility a {
    color: #5dade2 !important;
    text-decoration: underline;
}

.responsibility a:hover {
    color: #3498db !important;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.site-footer p {
    margin-bottom: 10px;
    color: #ecf0f1;
}

.site-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: #5dade2;
    text-decoration: underline;
}

.site-footer .powered-by {
    font-size: 1rem;
    margin-top: 20px;
}

.site-footer .powered-by a {
    color: #1e3c72;
    font-weight: 700;
    font-size: 1.1rem;
}

.site-footer .powered-by a:hover {
    color: #764ba2;
}

/* ========================================
   PAGE INTRO SECTION
======================================== */

.page-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #2c3e50;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.page-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a202c;
}

.page-intro .intro-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.85;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
}

.page-intro p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
}

/* ========================================
   HELP CARDS GRID
======================================== */

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.help-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.help-card:hover {
    border-color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.help-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.help-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.disclaimer-text {
    font-style: italic;
    color: #666;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #1e3c72;
    border-radius: 4px;
}

/* ========================================
   SECTOR DETAILS (expanded)
======================================== */

.services-section {
    background: #f8f9fa;
}

.intro-line {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

.sectors-list {
    margin-top: 40px;
}

.sector-detail {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid;
}

.sector-detail.charity {
    border-left-color: #3498db;
}

.sector-detail.professional {
    border-left-color: #27ae60;
}

.sector-detail.health {
    border-left-color: #f39c12;
}

.sector-detail.education {
    border-left-color: #9b59b6;
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.sector-icon {
    font-size: 2rem;
}

.sector-header h4 {
    font-size: 1.6rem;
    color: #1e3c72;
    margin: 0;
}

.sector-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sector-column h5 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
}

.sector-column ul {
    list-style: none;
    padding: 0;
}

.sector-column li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
    padding-left: 25px;
    position: relative;
}

.sector-column li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #999;
    font-size: 1.4rem;
}

.example-questions li {
    font-style: italic;
    color: #1e3c72;
}

.example-questions li:before {
    content: "💭";
    font-size: 1rem;
}

/* ========================================
   ACCESSIBILITY SECTION
======================================== */

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

.accessibility-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.accessibility-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.accessibility-item p {
    margin: 0;
    font-size: 1rem;
}

/* ========================================
   PRIVACY CARDS
======================================== */

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

.privacy-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.privacy-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.privacy-card h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* ========================================
   CHATBOT DEMO SECTION
======================================== */

.chatbot-demo {
    background: white;
    padding: 60px 20px;
}

.demo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

.suggested-questions {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.suggested-questions h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.question-btn {
    background: white;
    border: 2px solid #1e3c72;
    color: #1e3c72;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.question-btn:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.chatbot-placeholder {
    background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
    border: 3px dashed #1e3c72;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chatbot-placeholder p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

/* ========================================
   CONFIGURATION BOX
======================================== */

.config-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #1e3c72;
}

.config-box h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.code-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
    font-family: 'Courier New', monospace;
}

.code-box p {
    margin: 10px 0;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================
   VALUE PROPOSITION CARDS
======================================== */

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

.value-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   SECURITY & PRIVACY PAGE
======================================== */

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

.security-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: #1e3c72;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.security-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.security-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.security-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

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

.boundary-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px;
    border-left: 5px solid #1e3c72;
}

.boundary-item h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 700;
}

.boundary-item ul {
    list-style: none;
    padding: 0;
}

.boundary-item li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.boundary-item:first-child li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.boundary-item:last-child li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.rights-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.rights-card:hover {
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.rights-card h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 12px;
    font-weight: 700;
}

.rights-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.3);
    background: #2a5298;
}

@media (max-width: 968px) {
    .security-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .boundaries-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LEARNING SUPPORT SECTION
======================================== */

.learning-support {
    background: #ffffff;
    color: #2c3e50;
    padding: 80px 20px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.learning-support h3 {
    color: #1a202c;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    background: #f8f9fa;
    backdrop-filter: none;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e5e7eb;
}

.benefit-item:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #d1d5db;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a202c;
}

.benefit-item p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
    margin: 0;
}

.support-text {
    text-align: center;
    font-size: 1.15rem;
    margin-top: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .learning-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .learning-benefits {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HR QUOTE BOX
======================================== */

.hr-quote {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.quote-attribution {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 968px) {
    .sector-content,
    .accessibility-grid,
    .privacy-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sectors-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero .subheading {
        font-size: 1.1rem;
    }
    
    .page-intro h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 40px 20px;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .questions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .page-intro {
        padding: 40px 15px;
    }
    
    .page-intro h2 {
        font-size: 1.5rem;
    }
    
    .site-header h1 {
        font-size: 1.4rem;
    }
    
    .chatbot-placeholder {
        padding: 40px 20px;
    }
}

/* ========================================
   VISUAL POLISH - 10/10 ENHANCEMENTS
======================================== */

/* Bigger, more impactful tool icons */
.tool-icon {
    font-size: 3.5rem !important;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Enhanced section headings with gradient */
section h3 {
    font-weight: 800;
    position: relative;
    display: inline-block;
}

/* Better card depth on sectors */
.sectors-grid .sector-card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.sectors-grid .sector-card:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

/* Enhanced tool cards */
.tools-grid .tool-card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tool-card-link:hover .tool-card {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

/* Make learn more links more prominent */
.learn-more {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
}

/* Enhanced footer link - MAXIMUM visibility */
.site-footer .powered-by {
    background: rgba(102, 126, 234, 0.15);
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 25px;
}

.site-footer .powered-by a {
    color: #8b9bff !important;
    font-size: 1.15rem !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.site-footer .powered-by a:hover {
    color: #a5b4ff !important;
    transform: scale(1.05);
    display: inline-block;
}

/* Subtle animations for polish */
@media (prefers-reduced-motion: no-preference) {
    .sector-card,
    .tool-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

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

.assistant-overview-card {
    background: white;
    border-left: 5px solid #1e3c72;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.assistant-overview-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e3c72;
}

.assistant-overview-card p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.assistant-overview-card p strong {
    color: #1e3c72;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tech-feature {
    text-align: center;
    padding: 30px 20px;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tech-feature h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 10px;
    font-weight: 700;
}

.tech-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

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

.audience-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px;
    border-top: 4px solid #1e3c72;
}

.audience-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.audience-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 968px) {
    .assistant-overview-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

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

.contact-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #1e3c72;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 8px 0;
}

.contact-card a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

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

.info-box {
    background: white;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-box h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-box p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

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

.include-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.include-icon {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: bold;
    flex-shrink: 0;
}

.include-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-grid,
    .include-list {
        grid-template-columns: 1fr;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HOW IT WORKS PAGE
======================================== */

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

.concept-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.concept-card:hover {
    border-color: #1e3c72;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.concept-number {
    width: 60px;
    height: 60px;
    background: #1e3c72;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.concept-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.concept-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.assistant-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.comparison-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-header {
    background: #1e3c72;
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.comparison-icon {
    font-size: 2.5rem;
}

.comparison-header h4 {
    font-size: 1.4rem;
    margin: 0;
    color: white;
}

.comparison-detail {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-detail:last-child {
    border-bottom: none;
}

.comparison-detail strong {
    display: block;
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-detail p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.example-q {
    font-style: italic;
    color: #1e3c72 !important;
}

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

.process-step {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

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

.safety-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 30px;
}

.safety-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.safety-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #ffffff;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ========================================
   USE CASES PAGE
======================================== */

.use-case-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.use-case-icon {
    font-size: 3.5rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.use-case-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: #1e3c72;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.use-case-card h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.scenario {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 15px 0;
    color: #555;
}

.scenario strong {
    color: #1e3c72;
    display: block;
    margin-bottom: 5px;
}

.impact {
    background: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.95rem;
    border-radius: 4px;
}

.impact strong {
    color: #27ae60;
}

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

.theme-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.theme-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.theme-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}

/* ========================================
   RESPONSIVE - NEW PAGES
======================================== */

@media (max-width: 968px) {
    .concept-grid,
    .assistant-comparison,
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-process,
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tech-process,
    .themes-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ PAGE
======================================== */

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

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #1e3c72;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(to right, #f8f9fa 0%, white 100%);
}

.faq-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.3rem;
    color: #1e3c72;
    font-weight: 700;
}

.faq-answer {
    padding: 0 30px 30px 75px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin: 10px 0;
    line-height: 1.7;
    color: #555;
}

.faq-answer strong {
    color: #1e3c72;
}

.faq-answer a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.faq-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.faq-cta-option {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 16px;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.faq-cta-option h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.faq-cta-option p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Expandable FAQ (optional JavaScript enhancement) */
.faq-item.collapsed .faq-answer {
    display: none;
}

.faq-question::after {
    content: '';
    margin-left: auto;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1e3c72;
    transition: transform 0.3s ease;
}

.faq-item.collapsed .faq-question::after {
    transform: rotate(-90deg);
}

@media (max-width: 768px) {
    .faq-cta {
        grid-template-columns: 1fr;
    }
    
    .faq-answer {
        padding-left: 30px;
    }
}

/* ========================================
   ENHANCED CTAs & BENEFIT CARDS
======================================== */

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.cta-primary {
    background: #1e3c72;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.3);
    background: #2a5298;
}

.cta-secondary {
    background: white;
    color: #1e3c72;
    border: 2px solid #1e3c72;
}

.cta-secondary:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-3px);
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover {
    border-color: #1e3c72;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #1e3c72;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.tools-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

.tools-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #1e3c72;
}

.plain-description {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e3c72;
    line-height: 1.7;
    margin-bottom: 15px;
}

.use-case {
    font-size: 0.95rem;
    color: #1e3c72;
    font-style: italic;
    margin: 12px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.who-uses {
    font-size: 0.9rem;
    color: #666;
    margin: 12px 0 0 0;
}

@media (max-width: 968px) {
    .benefit-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .benefit-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ORGANIZATION EXAMPLE PAGES
======================================== */

.org-header {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.org-header.advocacy-org {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.org-header.children-org {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.org-header.financial-org {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.org-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.org-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-top: 15px;
}

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

.org-info-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
}

.org-info-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.org-info-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.org-info-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.referral-card,
.access-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
}

.referral-card h4,
.access-card h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.referral-card p,
.access-card p {
    margin: 10px 0;
    line-height: 1.7;
}

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

.program-card {
    background: white;
    border-left: 5px solid #1e3c72;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.program-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.program-card p {
    margin: 10px 0;
    line-height: 1.7;
}

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

.location-card,
.coverage-area {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.location-card h4,
.coverage-area h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.org-faq {
    max-width: 900px;
    margin: 40px auto 0;
}

.org-faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.org-faq-item h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.org-faq-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1e3c72;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .org-info-grid,
    .referral-options,
    .access-options,
    .locations-grid,
    .coverage-grid,
    .access-steps {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Organization Header Colors */
.org-header.mental-health-org {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.org-header.community-org {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.org-header.training-org {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.waiting-times-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.waiting-time-card {
    background: white;
    border: 2px solid #ffa500;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.waiting-time-card h4 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.waiting-time-card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

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

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

.volunteer-option h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

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

.requirement-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e2e8f0;
}

.requirement-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.requirement-card:first-child li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.requirement-card:last-child li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

@media (max-width: 968px) {
    .waiting-times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .volunteer-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Organization Header Colors */
.org-header.mental-health-org {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.org-header.eldercare-org {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.org-header.crisis-org {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.org-header.sports-org {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
}

.org-header.housing-org {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.video-placeholder {
    margin: 30px 0;
}
