  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9fafb;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header Banner */
        .banner {
            background: linear-gradient(135deg, #FFC000 0%, #FF8C00 100%);
            color: white;
            padding: 1rem;
            text-align: center;
        }

        .banner-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .banner-text h2 {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }

        .banner-text ul {
            list-style: none;
            display: flex;
            gap: .5rem;
            justify-content: left;
            flex-wrap: wrap;
            font-size: 0.875rem;
        }

        .banner-text ul li:before {
            content: "● ";
            color: #60a5fa;
        }

        /* Get in Touch Section */
        .section-header {
            text-align: center;
            padding: 3rem 0 1rem;
        }

        .section-header h1 {
            font-size: 2.5rem;
            color: #FFC000;
            margin-bottom:10px;
        }

        .section-header p {
            color: #6b7280;
            font-size: 1.125rem;
        }

        /* Contact Info Cards */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 1rem 0;
        }

        .contact-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .contact-card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-card-icon svg {
            width: 30px;
            height: 30px;
            color: #FFC000;
        }

        .contact-card h3 {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }

        .contact-card p, .contact-card a {
            color: #1f2937;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
        }

        .contact-card a:hover {
            color: #FFC000;
        }

        /* Main Content Grid */
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem 0;
        }

        @media (min-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Map Section */
        .map-section {
            background: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
        }

        .map-section h2 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .map-container {
            width: 100%;
            height: 100%;
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Form */
        .form-section {
            background: white;
            border-radius: 0.5rem;
            padding: 2rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .form-section h2 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1f2937;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #374151;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .banner-text ul {
            font-size: 10px;
            flex-wrap: nowrap;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #FFC000;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: #FFC000;
            color: white;
            padding: 0.875rem;
            border: none;
            border-radius: 0.375rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .submit-btn:hover {
            background: #2563eb;
        }

        .form-note {
            margin-top: 1rem;
            font-size: 0.75rem;
            color: #6b7280;
            line-height: 1.5;
        }

        /* Visit Us Section */
        .visit-section {
           background: #ffbf004b;

            padding: 3rem 1rem;
            margin-top: 3rem;
        }

        .visit-content {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .visit-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .visit-text h2 {
            font-size: 2rem;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .visit-text h2 span {
            color: #FFC000;
        }

        .visit-text p {
            color: #4b5563;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .visit-btn {
            display: inline-block;
            background: #FFC000;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }

        .visit-btn:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }

        .visit-details {
            background: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .visit-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .visit-item:last-child {
            border-bottom: none;
        }

        .visit-item svg {
            width: 20px;
            height: 20px;
            color: #FFC000;
            flex-shrink: 0;
        }

        .visit-item span {
            color: #1f2937;
            font-size: 0.95rem;
        }

        .visit-image {
            text-align: center;
            height: 100%;
        }

        .visit-image img {
            max-width: 100%;
            border-radius: 0.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .visit-img{
            height: 105%;
        }

        /* Talk to Experts Section */
        .experts-section {
            padding: 3rem 1rem;
            background: white;
        }

        .experts-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .experts-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .experts-header h2 {
            font-size: 2rem;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .experts-header .badge {
            display: inline-block;
            background: #FFC000;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .experts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .expert-info {
            background: #f9fafb;
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: center;
        }

        .expert-info svg {
            width: 24px;
            height: 24px;
            color: #FFC000;
            margin: 0 auto 0.5rem;
        }

        .expert-label {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.25rem;
        }

        .expert-value {
            font-weight: 600;
            color: #1f2937;
        }

        .expert-note {
            text-align: center;
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }

        .expert-cta {
            text-align: center;
        }

        .expert-cta-btn {
            display: inline-block;
            background: #1f2937;
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 0.375rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }

        .expert-cta-btn:hover {
            background: #111827;
            transform: translateY(-2px);
        }

        /* Team Photos */
        .team-photos {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }

        .team-photo {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        /* Footer */
        .footer {
            background: #111827;
            color: #9ca3af;
            padding: 2rem 1rem;
            text-align: center;
        }

        .footer p {
            font-size: 0.875rem;
        }