

        :root {
            --primary-color: #1562f1;
            --secondary-color: #0623a7;
            --accent-color: #0ca3d1;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: white !important;
        }

       

        .navbar-nav .nav-link:hover {
            color: white !important;
        }

        .hero-carousel .carousel-item {
            height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-carousel .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
        }

        .carousel-caption {
            z-index: 10;
            bottom: 50%;
            transform: translateY(50%);
        }

        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .carousel-caption p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .btn-hero {
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            background: white;
            color: var(--accent-color);
            font-weight: bold;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            color: var(--accent-color);
        }

      

        .scholarship-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .scholarship-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .card-img-top {
            height: 250px;
            object-fit: cover;
        }

        .badge-full {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            font-size: 0.9rem;
            padding: 8px 15px;
        }

        .badge-partial {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            font-size: 0.9rem;
            padding: 8px 15px;
        }

        .country-list {
            list-style: none;
            padding: 0;
        }

        .country-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .country-list li i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .gallery-carousel .carousel-item img {
            height: 400px;
            object-fit: cover;
        }

       
        .contact-info i {
            font-size: 2rem;
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
        }

        .stats-section {
            background: #f8fafc;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-color);
        }

        .stat-label {
            font-size: 1.1rem;
            color: #f7df0d;
        }

        .page-header {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.95), rgba(42, 82, 152, 0.95)),
                        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-top: 56px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }


        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-top: 20px;
        }

        .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .country-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
            background: white;
        }

        .country-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .country-img-wrapper {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .country-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .country-card:hover .country-img-wrapper img {
            transform: scale(1.1);
        }

        .country-flag {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 40px;
            border-radius: 5px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            object-fit: cover;
        }

        .scholarship-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .badge-full {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }

        .badge-partial {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }

        .card-body {
            padding: 2rem;
        }

        .country-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .country-subtitle {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .benefits-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list i {
            margin-right: 12px;
            color: var(--accent-color);
            font-size: 1.1rem;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 1.5rem;
        }

        .info-item {
            background: #f8fafc;
            padding: 12px;
            border-radius: 10px;
            text-align: center;
        }

        .info-item i {
            color: var(--accent-color);
            font-size: 1.5rem;
            display: block;
            margin-bottom: 5px;
        }

        .info-label {
            font-size: 0.8rem;
            color: #666;
            font-weight: 600;
        }

        .info-value {
            font-size: 0.9rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        .btn-apply {
            width: 100%;
            padding: 12px;
            border-radius: 25px;
            font-weight: bold;
            border: none;
            transition: all 0.3s;
        }

        .btn-apply-full {
            background: linear-gradient(135deg, #0079e9, #0163d3 100%);
            color: white;
        }

        .btn-apply-full:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
            color: white;
        }

        .btn-apply-partial {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }

        .btn-apply-partial:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
            color: white;
        }

        .filter-section {
            background: #f8fafc;
            padding: 2rem 0;
            margin-bottom: 3rem;
        }

        .filter-btn {
            margin: 5px;
            padding: 10px 25px;
            border-radius: 25px;
            border: 2px solid var(--accent-color);
            background: white;
            color: var(--accent-color);
            font-weight: 600;
            transition: all 0.3s;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--accent-color);
            color: white;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
            margin-top: 4rem;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn-cta {
            padding: 15px 50px;
            font-size: 1.2rem;
            border-radius: 50px;
            background: white;
            color: var(--accent-color);
            font-weight: bold;
            border: none;
            transition: all 0.3s;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            color: var(--accent-color);
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
            margin-top: 0;
        }



        

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
        }


  
   
      



        .page-header {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.85)),
                        url('/assets/images/5.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 80px;
            margin-top: 56px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-top: 20px;
        }

      

        .breadcrumb-item.active {
            color: rgba(255,255,255,0.8);
        }

      

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .story-section {
            padding: 5rem 0;
        }

        .story-image {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

        .story-content {
            padding: 2rem;
        }

        .story-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .highlight-text {
            color: var(--accent-color);
            font-weight: bold;
        }

        .stats-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--gold-color);
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .values-section {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .value-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .value-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .value-description {
            color: #666;
            line-height: 1.7;
        }

        .team-section {
            padding: 5rem 0;
        }

        .team-carousel .carousel-item {
            padding: 2rem 0;
        }

        .team-member {
            text-align: center;
            padding: 2rem;
        }

        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--accent-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .team-bio {
            color: #666;
            line-height: 1.7;
        }

        .timeline-section {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .timeline-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: #666;
            line-height: 1.6;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn-cta {
            padding: 15px 50px;
            font-size: 1.2rem;
            border-radius: 50px;
            background: white;
            color: var(--accent-color);
            font-weight: bold;
            border: none;
            transition: all 0.3s;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            color: var(--accent-color);
        }

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

        .partner-logo {
            height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                flex-direction: row !important;
            }

            .timeline-content {
                width: calc(100% - 100px);
                margin-left: 100px;
            }

            .timeline-year {
                left: 30px;
                transform: none;
            }
        }
  
           .page-header {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.85)),
                        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 80px;
            margin-top: 56px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

      

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-top: 20px;
        }

        
      

        .contact-section {
            padding: 5rem 0;
        }

        .contact-info-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            height: 100%;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .contact-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .contact-detail {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .contact-detail a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-detail a:hover {
            color: var(--secondary-color);
        }

        .form-section {
            background: #f8fafc;
            padding: 5rem 0;
        }

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

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

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .form-control, .form-select {
            padding: 12px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .map-section {
            padding: 0;
            height: 450px;
        }

        .map-container {
            width: 100%;
            height: 100%;
            border-radius: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .office-hours {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-top: 2rem;
        }

        .hours-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .hours-list {
            list-style: none;
            padding: 0;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 600;
            color: var(--primary-color);
        }

        .time {
            color: #666;
        }

        .social-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 4rem 0;
            color: white;
            text-align: center;
        }

        .social-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .social-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-color);
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            color: var(--accent-color);
        }

        .faq-section {
            padding: 5rem 0;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .accordion-button {
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.5rem;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-body {
            padding: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .form-container {
                padding: 2rem 1.5rem;
            }

            .social-links {
                gap: 1rem;
            }

            .social-link {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        } 

     

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .contact-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .contact-detail {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .contact-detail a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-detail a:hover {
            color: var(--secondary-color);
        }

        .form-section {
            background: #f8fafc;
            padding: 5rem 0;
        }

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

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

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .form-control, .form-select {
            padding: 12px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .map-section {
            padding: 0;
            height: 450px;
        }

        .map-container {
            width: 100%;
            height: 100%;
            border-radius: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .office-hours {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-top: 2rem;
        }

        .hours-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .hours-list {
            list-style: none;
            padding: 0;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 600;
            color: var(--primary-color);
        }

        .time {
            color: #666;
        }

        .social-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 4rem 0;
            color: white;
            text-align: center;
        }

        .social-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .social-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-color);
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            color: var(--accent-color);
        }

        .faq-section {
            padding: 5rem 0;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .accordion-button {
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.5rem;
        }
         .btn-read-more {
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            color: white;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-body {
            padding: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .form-container {
                padding: 2rem 1.5rem;
            }

            .social-links {
                gap: 1rem;
            }

            .social-link {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

