        .contact-section {
            padding: 6rem 0;
            background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 100%);
        }

        [data-theme="dark"] .contact-section {
            background: linear-gradient(45deg, #0f172a 0%, #1e293b 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
              /* newcode 20250605
           color: #64748b;
            */
             color: var(--light1);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .contact-info {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

         [data-theme="dark"] .contact-info {
            background: #334155;
            border-color: rgba(71, 85, 105, 0.5);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: rgba(102, 126, 234, 0.05);
            transform: translateX(5px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.5rem;
            background: var(--gradient-1);
            color: white;
            flex-shrink: 0;
        }

        .info-content h4 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

          .info-content p {
            /* newcode 20250605
            color: #64748b;
            */
            color:var(--light2);
            line-height: 1.6;
        }

        /* Option 2: FAQ Section */
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        [data-theme="dark"] .faq-section {
            background: #334155;
            border-color: rgba(71, 85, 105, 0.5);
        }

        .faq-section h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 2rem;
            text-align: center;
        }

        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            padding: 1.5rem 0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: #667eea;
        }

        .faq-answer {
		/* newcode 20250605
            color: #64748b;
			*/
            color:var(--light2);
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 1rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 1rem;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .map-section {
            padding: 4rem 0;
            background: white;
        }

        [data-theme="dark"] .map-section {
            background: rgba(30, 41, 59, 0.95);
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
            position: relative;
        }

        .map-overlay {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            max-width: 300px;
        }

        .map-overlay h4 {
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .map-overlay p {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .office-hours {
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 20px;
            padding: 3rem;
            margin-top: 4rem;
            text-align: center;
        }

        .office-hours h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .hours-item {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .hours-item h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .hours-item p {
            color: #64748b;
        }

         .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
             .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-info,
            .contact-form {
                padding: 2rem;
            }

            .hours-grid {
                grid-template-columns: 1fr;
            }

            .map-overlay {
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 1rem;
                max-width: none;
            }
        }