        /* General Reset */
        
        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%);
            color: #2c3e50;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            opacity: 0.1;
            z-index: -1;
        }
        /* Header */
        
        header {
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 20px 15px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo {
            flex-shrink: 0;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        header h1 {
            font-family: 'Georgia', serif;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        
        header nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        header nav ul li {
            display: inline-block;
            margin: 0 20px;
        }
        
        header nav ul li a {
            color: #f0f0f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        header nav ul li a.active,
        header nav ul li a:hover {
            background-color: #9c27b0;
            box-shadow: 0 0 8px #9c27b0;
        }
        /* Hero */
        
        .hero {
            background: url('../images/hero.jpg') no-repeat center center/cover;
            color: white;
            padding: 120px 20px 100px;
            text-align: center;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
            flex-grow: 1;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .hero h2,
        .hero p,
        .hero button {
            position: relative;
            z-index: 2;
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: textGlow 2s ease-in-out infinite alternate;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 500;
            color: #ffffff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            letter-spacing: 0.5px;
        }
        
        @keyframes textGlow {
            from {
                filter: brightness(1);
            }
            to {
                filter: brightness(1.2);
            }
        }
        
        .hero button {
            background: #9c27b0;
            color: white;
            padding: 15px 35px;
            border: none;
            cursor: pointer;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(156, 39, 176, 0.6);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .hero button:hover {
            background: #6a11cb;
            transform: scale(1.1);
        }
        /* Info Section */
        
        section {
            padding: 40px 20px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(156, 39, 176, 0.3);
            margin-bottom: 40px;
        }
        
        section h3,
        section h2 {
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 20px;
            color: #2c3e50;
            text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
        }
        
        section p {
            font-size: 1.2rem;
            font-weight: 400;
            color: #34495e;
            line-height: 1.8;
        }
        /* Gallery */
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .gallery-container img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
        }
        
        .gallery-container img:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(156, 39, 176, 0.7);
        }
        /* Lightbox */
        
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }
        
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }
        
        .lightbox .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }
        /* Contact Form */
        
        form {
            max-width: 500px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);
        }
        
        form input,
        form textarea {
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.9);
            transition: box-shadow 0.3s ease;
        }
        
        form input:focus,
        form textarea:focus {
            outline: none;
            box-shadow: 0 0 10px #9c27b0;
        }
        
        form button {
            background: #9c27b0;
            color: white;
            padding: 15px;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 10px;
            transition: background-color 0.3s ease;
        }
        
        form button:hover {
            background: #6a11cb;
        }
        /* Footer */
        
        footer {
            background: rgba(255, 255, 255, 0.1);
            color: #2c3e50;
            padding: 20px;
            text-align: center;
            margin-top: auto;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(156, 39, 176, 0.3);
            max-width: 900px;
            margin: 0 auto;
        }
        
        footer p {
            margin: 0;
        }
        
        .social-links {
            margin-top: 10px;
        }
        
        .social-links a {
            color: #2c3e50;
            margin: 0 10px;
            text-decoration: none;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: #9c27b0;
        }
        /* Responsive */
        
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                text-align: center;
            }
            header h1 {
                font-size: 2rem;
                margin-bottom: 10px;
            }
            .hero h2 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            section {
                padding: 20px 10px;
            }
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }
        /* Additional Animations */
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        section {
            animation: fadeIn 1s ease-in;
        }
        /* Testimonials */
        
        .testimonials {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .testimonial {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
        }
        
        .testimonial p {
            font-style: italic;
            margin-bottom: 10px;
        }
        
        .testimonial cite {
            font-weight: bold;
            color: #9c27b0;
        }
        /* Newsletter */
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
        }
        
        .newsletter-form input {
            flex: 1;
            max-width: 300px;
        }
        /* Helplines */
        
        .helplines ul {
            list-style: none;
            padding: 0;
        }
        
        .helplines li {
            background: rgba(255, 255, 255, 0.1);
            margin: 10px 0;
            padding: 10px;
            border-radius: 5px;
        }
        /* Features Page */
        
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
            text-align: center;
        }
        
        .feature h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .feature p {
            margin-bottom: 15px;
        }
        
        .feature button {
            background: #9c27b0;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .feature button:hover {
            background: #6a11cb;
        }
        
        .sos-button {
            background: #ff0000 !important;
        }
        
        .sos-button:hover {
            background: #cc0000 !important;
        }
        
        #language-select {
            padding: 10px;
            border-radius: 5px;
            border: none;
            background: rgba(255, 255, 255, 0.9);
        }
        
        #post-check {
            width: 100%;
            height: 80px;
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 5px;
            border: none;
        }
        /* Modal Styles */
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            max-width: 700px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            text-align: left;
            color: #333;
        }
        
        .modal-content h3 {
            color: #222;
            margin-bottom: 15px;
        }
        
        .modal-content ul li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .modal-content ol li {
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        .modal .close {
            position: absolute;
            top: 10px;
            right: 15px;
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .modal .close:hover {
            color: black;
        }
        /* Quiz Modal Styles */
        
        #quiz-question {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }
        
        #quiz-options {
            margin-bottom: 20px;
        }
        
        #quiz-options label {
            display: block;
            margin: 10px 0;
            font-size: 1rem;
            cursor: pointer;
        }
        
        #quiz-options input[type="radio"] {
            margin-right: 10px;
        }
        
        #quiz-next-btn,
        #quiz-submit-btn {
            background: #9c27b0;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        
        #quiz-next-btn:hover,
        #quiz-submit-btn:hover {
            background: #6a11cb;
        }
        
        #quiz-result {
            text-align: center;
        }
        
        #quiz-result h4 {
            color: #222;
            margin-bottom: 15px;
        }
        
        #quiz-result p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        #quiz-result button {
            background: #9c27b0;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }
        
        #quiz-result button:hover {
            background: #6a11cb;
        }
        /* Chat Modal Styles */
        
        .chat-modal-content {
            max-width: 500px;
            width: 90%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 5px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
        }
        
        .chat-messages .message {
            margin-bottom: 10px;
            padding: 8px 12px;
            border-radius: 10px;
            max-width: 80%;
            word-wrap: break-word;
        }
        
        .chat-messages .user {
            background: #007bff;
            color: white;
            align-self: flex-end;
            margin-left: auto;
        }
        
        .chat-messages .bot {
            background: #e9ecef;
            color: #333;
        }
        
        .chat-input-container {
            display: flex;
            gap: 10px;
        }
        
        .chat-input-container input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .chat-input-container button {
            background: #9c27b0;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        
        .chat-input-container button:hover {
            background: #6a11cb;
        }
        
        #chat-icon {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #9c27b0;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        #chat-icon img {
            width: 30px;
            height: 30px;
        }
        
        #chat-modal {
            top: 80px !important;
            right: 20px !important;
            width: 300px !important;
            height: 400px !important;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            background: none !important;
        }