:root {
            --primary-dark: #3a0ca3;
            --primary-light: #4361ee;
            --secondary: #f8f9fa;
            --accent: #ff006e;
            --text-dark: #212529;
            --text-light: #6c757d;
            --success: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--secondary);
            overflow-x: hidden;
        }
        
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-dark);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: white;
        }
        
        .auth-buttons .btn {
            margin-left: 10px;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
        }
        
        .btn-signup {
            background-color: var(--primary-light);
            border: none;
            color: white;
        }
        
        .btn-signup:hover {
            background-color: #3a56d4;
            color: white;
        }
        
        .btn-login {
            background-color: transparent;
            border: 1px solid white;
            color: white;
        }
        
        .btn-login:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.9);
            text-align: center;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            padding: 60px 0;
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Content */
        .contact-content {
            padding: 60px 0;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .contact-card h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-light);
        }
        
        .contact-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .contact-card p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
        
        .form-control, .form-select {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
        }
        
        .form-text {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 5px;
        }
        
        .btn-submit {
            background-color: var(--primary-light);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: #3a56d4;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Contact Methods */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .method-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .method-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .method-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .method-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .method-card p {
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        .method-card .contact-detail {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: white;
            padding: 60px 0;
        }
        
        .faq-item {
            background-color: var(--secondary);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid #e9ecef;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: var(--text-dark);
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(67, 97, 238, 0.05);
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Live Chat */
        .live-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }
        
        .chat-button {
            width: 60px;
            height: 60px;
            background-color: var(--success);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }
        
        .chat-button:hover {
            transform: scale(1.1);
            background-color: #218838;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
            }
        }
        
        /* Office Hours */
        .hours-card {
            background-color: rgba(67, 97, 238, 0.1);
            border-left: 4px solid var(--primary-light);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .hours-card h4 {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            background-color: white;
            border-radius: 8px;
        }
        
        .hours-item .day {
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .hours-item .time {
            color: var(--primary-light);
            font-weight: 500;
        }
        
        /* Location Map */
        .map-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .map-container {
            height: 400px;
            background-color: #e9ecef;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .footer-disclaimer {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }
        
        .age-badge-footer {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .contact-card {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .contact-content, .faq-section, .map-section {
                padding: 40px 0;
            }
            
            .contact-card, .contact-form {
                padding: 20px;
            }
            
            .live-chat {
                bottom: 20px;
                right: 20px;
            }
            
            .chat-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .auth-buttons .btn {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .navbar-nav {
                margin-top: 20px;
            }
            
            .contact-card h2 {
                font-size: 1.5rem;
            }
            
            .contact-card h3 {
                font-size: 1.3rem;
            }
            
            .contact-methods {
                grid-template-columns: 1fr;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
        }

