        :root {
            --primary: #5d93e4;
            --secondary: #f5f7fa;
            --accent: #ff6b6b;
            --text: #333;
            --light-text: #666;
            --white: #fff;
            --emergency: #ff4757;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--secondary);
            color: var(--text);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #4a7bc8;
            transform: translateY(-2px);
        }
        
        .btn-accent {
            background-color: var(--accent);
        }
        
        .btn-accent:hover {
            background-color: #e05555;
        }
        
        .btn-emergency {
            background-color: var(--emergency);
            font-size: 18px;
            padding: 15px 30px;
        }
        
        .btn-emergency:hover {
            background-color: #e8413a;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        p {
            margin-bottom: 15px;
            color: var(--light-text);
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            width: 30px;
            height: 30px;
            position: relative;
            z-index: 1001;
        }
        
        .mobile-menu .bar {
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }
        
        .mobile-menu .bar:nth-child(1) {
            top: 0;
        }
        
        .mobile-menu .bar:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }
        
        .mobile-menu .bar:nth-child(3) {
            bottom: 0;
        }
        
        .mobile-menu.active .bar:nth-child(1) {
            transform: translateY(13.5px) rotate(45deg);
        }
        
        .mobile-menu.active .bar:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu.active .bar:nth-child(3) {
            transform: translateY(-13.5px) rotate(-45deg);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #e0f7fa 0%, #f8f9fa 100%);
            padding: 180px 0 100px;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Support Options */
        .support-options {
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
        }
        
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .option-card {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .option-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .option-icon {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .option-card h3 {
            color: var(--primary);
        }
        
        /* Immediate Help */
        .immediate-help {
            background-color: #fff5f5;
            text-align: center;
        }
        
        .help-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .help-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 5px solid var(--emergency);
        }
        
        .help-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .help-icon {
            font-size: 50px;
            color: var(--emergency);
            margin-bottom: 20px;
        }
        
        .help-card h3 {
            color: var(--emergency);
        }
        
        .phone-number {
            font-size: 24px;
            font-weight: 700;
            color: var(--emergency);
            margin: 15px 0;
        }
        
        /* Support Groups */
        .support-groups {
            background-color: var(--secondary);
        }
        
        .groups-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .group-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .group-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .group-info {
            padding: 25px;
        }
        
        .group-name {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .group-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--light-text);
        }
        
        .group-meta i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        /* Self-Help Resources */
        .self-help {
            background-color: var(--white);
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .resource-card {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
        }
        
        .resource-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .resource-card h3 {
            color: var(--primary);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--secondary);
        }
        
        .faq-item {
            background-color: var(--white);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 18px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 14px;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 40px 40px;
                transition: left 0.3s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .mobile-menu {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 18px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .phone-number {
                font-size: 20px;
            }
        }
