/* About page specific styles */
        .about-intro {
            padding: 3rem 5%;
            text-align: center;
            background: linear-gradient(to right, rgba(13, 13, 20, 0.9), rgba(26, 26, 43, 0.7)), url('../images/banner.jpg');
            background-size: cover;
            background-position: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .about-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 207, 255, 0.1) 0%, rgba(217, 79, 203, 0.1) 100%);
            pointer-events: none;
        }
        
        .about-intro h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            text-shadow: 0 0 20px rgba(217, 79, 203, 0.5);
            position: relative;
            z-index: 2;
        }
        
        .about-intro p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-section {
            padding: 2rem 5%;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }
        
        .mission-container {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .mission-content {
            flex: 3;
            min-width: 300px;
        }
        
        .mission-image {
            flex: 2;
            min-width: 300px;
        }
        
        .mission-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .about-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        
        .about-section h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .about-section p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 2rem auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -12px;
            background-color: var(--dark-color);
            border: 4px solid var(--primary-color);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .right::after {
            left: -12px;
        }
        
        .timeline-content {
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border-left: 4px solid var(--primary-color);
        }
        
        .timeline-content h3 {
            margin-bottom: 0.5rem;
        }
        
        .timeline-date {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }
        
        .team-member {
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
        }
        
        .team-member img {
            width: 100%;
            height: 250px;
            object-fit: contain;
            object-position: center;
            background: #222;
        }
        
        .team-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .team-info h3 {
            margin-bottom: 0.5rem;
        }
        
        .team-role {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 1rem;
        }
        
        .team-social a {
            color: var(--light-color);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .team-social a:hover {
            color: var(--primary-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(47, 158, 65, 0.1);
        }
        
        .faq-question.active {
            background-color: rgba(47, 158, 65, 0.2);
            color: var(--primary-color);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.show {
            padding: 1rem 1.5rem;
            max-height: 500px;
        }
        
        .contact-container {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }
        
        .contact-info i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .contact-form {
            flex: 2;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 4px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-color);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-magenta), var(--neon-blue));
            color: white;
            border: none;
            border-radius: 25px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(217, 79, 203, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-magenta));
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 207, 255, 0.6);
        }
        
        @media (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 15px;
                top: 15px;
            }
            
            .left, .right {
                left: 0;
            }
        }

        .disabled-form {
            position: relative;
            opacity: 0.7;
            pointer-events: none;
        }

        .form-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            border-radius: 8px;
        }

        .coming-soon-message {
            background-color: rgba(0, 0, 0, 0.8);
            padding: 2rem;
            text-align: center;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }

        .coming-soon-message i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }