        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a0f;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .back-btn {
            background: transparent;
            color: #00d4ff;
            border: 2px solid #00d4ff;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #00d4ff;
            color: white;
        }

        /* Main Content */
        main {
            margin-top: 100px;
            padding: 40px 0;
            background: #0f0f1a;
            min-height: calc(100vh - 100px);
        }

        .page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 0;
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-header p {
            color: rgba(255,255,255,0.7);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Content Sections */
        .section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 3rem;
        }

        .section h2 {
            color: #00d4ff;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }

        .section h3:first-of-type {
            margin-top: 0;
        }

        .section p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .section ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .section li {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }

        /* Warning Signs Grid */
        .warning-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .warning-card {
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
        }

        .warning-card .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .warning-card h4 {
            color: #ff6b35;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .warning-card p {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Tools Grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .tool-card {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 255, 0.5);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
        }

        .tool-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .tool-card h4 {
            color: #00d4ff;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .tool-card p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .tool-btn {
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .tool-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
        }

        /* Support Organizations */
        .support-orgs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .org-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .org-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
        }

        .org-logo {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: #00d4ff;
        }

        .org-card h4 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .org-card p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .org-contact {
            margin-top: 1rem;
        }

        .org-contact a {
            color: #00d4ff;
            text-decoration: none;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
        }

        .org-contact a:hover {
            text-decoration: underline;
        }

        /* Emergency Help */
        .emergency-help {
            background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
            border: 2px solid rgba(255, 107, 53, 0.5);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            margin: 3rem 0;
        }

        .emergency-help h3 {
            color: #ff6b35;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .emergency-help p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .emergency-contacts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .emergency-contact {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 12px;
        }

        .emergency-contact h4 {
            color: #ff6b35;
            margin-bottom: 0.5rem;
        }

        .emergency-contact a {
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            text-decoration: none;
        }

        .emergency-contact a:hover {
            text-decoration: underline;
        }

        /* Quiz Section */
        .quiz-section {
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 16px;
            padding: 3rem;
            margin: 3rem 0;
        }

        .quiz-section h3 {
            color: #00d4ff;
            text-align: center;
            margin-bottom: 2rem;
        }

        .quiz-question {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .quiz-question h4 {
            color: white;
            margin-bottom: 1rem;
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .quiz-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.8);
        }

        .quiz-option input {
            margin: 0;
        }

        /* Statistics */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-card {
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00d4ff;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: #0a0a0f;
            padding: 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        .footer-content {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }

            .section {
                padding: 2rem;
            }

            .warning-grid,
            .tools-grid,
            .support-orgs {
                grid-template-columns: 1fr;
            }

            .emergency-contacts {
                grid-template-columns: 1fr;
            }

            .header-content {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .section {
                padding: 1.5rem;
            }

            .emergency-help {
                padding: 2rem;
            }
        }
