    /* Reuse your existing styles from All_quizs_and_Evaluations.html */
        :root {
            --primary-color: #2b7de9;
            --secondary-color: #38dbff;
            --dark-color: #2d3436;
            --light-color: #f5f6fa;
            --success-color: #00b894;
            --warning-color: #f9f8f8;
            --danger-color: #d63031;
            --orange-gradient: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            --orange-shine: linear-gradient(90deg, rgba(255, 154, 157, 0.286) 0%, rgba(250, 208, 196, 0.41) 50%, rgba(255, 154, 157, 0.384) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: white;
            color: var(--dark-color);
            min-height: 100vh;
        }
      
        .cus-header {
            background-color: white;
            padding: 10px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            top: 0;
            z-index: 100;
            margin-bottom: 12px;
            margin-left: 12px;
            margin-right: 12px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo img {
            margin-right: 10px;
        }
        
        .cus-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .cus-nav a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 0;
            position: relative;
        }
        
        .cus-nav a:hover {
            color: var(--primary-color);
        }
        
        .cus-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }
        
        .cus-nav a:hover::after {
            width: 100%;
        }
        
        .search-bar {
            position: relative;
            margin-left: 20px;
        }
        
        .search-bar input {
            padding: 8px 15px 8px 35px;
            border-radius: 20px;
            border: 1px solid #ddd;
            outline: none;
            transition: all 0.3s;
            min-width: 200px;
        }
        
        .search-bar input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }
        
        .search-bar i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        /* New contact page specific styles */
        .contact-hero {
            background: linear-gradient(135deg, rgba(43, 125, 233, 0.1) 0%, rgba(56, 219, 255, 0.1) 100%);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 50px;
            border-radius: 20px;
            margin: 30px;
        }

        .contact-hero h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .contact-hero p {
            font-size: 1.1rem;
            color: var(--dark-color);
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 0 30px 50px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-form {
            flex: 2;
            min-width: 300px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .contact-details p, .contact-details a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: var(--primary-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(43, 125, 233, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #1a5fb4;
            transform: translateY(-2px);
        }

        .about-section {
            margin: 50px 30px;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .about-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }

        .about-text {
            flex: 2;
            min-width: 300px;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        

        .values-section {
            margin-top: 50px;
        }

        .values-section h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }

        .value-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
            text-align: center;
        }

        .value-description {
            color: #666;
            line-height: 1.6;
            text-align: center;
        }

        .cus-footer {
          background: rgb(28, 28, 28);
          color: var(--footer-text);
          padding: 60px 0 24px 0;
          margin-top: 60px;
        }
        
        .cus-footer-content {
          max-width: 1300px;
          margin: 0 auto;
          display: flex;
          justify-content: space-between;
          gap: 60px;
          flex-wrap: wrap;
          padding: 0 40px;
        }
        
        .footer-col {
          flex: 1 1 220px;
          min-width: 180px;
          margin-bottom: 28px;
        }
        
        .footer-title {
          font-size: 1.1rem;
          font-weight: 600;
          margin-bottom: 18px;
          color: rgb(0, 83, 94);
          letter-spacing: 1px;
        }
        
        .footer-link, .footer-desc {
          color: #cfd8dc;
          font-size: 1rem;
          text-decoration: none;
          display: block;
          margin-bottom: 10px;
          transition: color 0.2s;
        }
        
        .footer-link:hover {
          color: #fff;
          text-decoration: underline;
        }
        
        .footer-social {
          display: flex;
          gap: 18px;
          margin-top: 10px;
        }
        
        .footer-social a {
          color: #cfd8dc;
          font-size: 1.25rem;
          transition: color 0.2s;
        }
        
        .footer-social a:hover {
          color: #fff;
        }
        
        .footer-bottom {
          text-align: center;
          color: #b0bec5;
          font-size: 0.98rem;
          margin-top: 34px;
          letter-spacing: 1px;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .contact-hero {
                padding: 50px 20px;
                margin: 15px;
            }
            
            .contact-hero h1 {
                font-size: 2rem;
            }
            
            .contact-container, .about-section {
                margin: 15px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
        }

        /* Dark mode styles */
        body.dark-mode .contact-info,
        body.dark-mode .contact-form,
        body.dark-mode .about-section,
        body.dark-mode .team-member,
        body.dark-mode .value-card {
            background: #0a0a0c !important;
            color: #fff !important;
            border-color: #333 !important;
        }

        body.dark-mode .contact-details p,
        body.dark-mode .contact-details a,
        body.dark-mode .about-text p,
        body.dark-mode .member-bio,
        body.dark-mode .value-description {
            color: #ccc !important;
        }

        body.dark-mode .contact-hero {
            background: linear-gradient(135deg, rgba(43, 125, 233, 0.2) 0%, rgba(56, 219, 255, 0.2) 100%);
        }

        body.dark-mode .form-control {
            background: #23283a !important;
            color: #fff !important;
            border-color: #333 !important;
        }