        /* Global Styles */
        :root {
            --primary: #4e73df;
            --primary-dark: #3a56b0;
            --secondary: #f8f9fa;
            --dark: #212529;
            --light: #f8f9fa;
            --success: #1cc88a;
            --info: #36b9cc;
            --warning: #f6c23e;
            --danger: #e74a3b;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .section-title {
            font-weight: 700;
            position: relative;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Button Styles */
        .btn {
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        /* Navbar Styles */
        .navbar {
            padding: 0.5rem 1rem;
        }

        .navbar-brand img {
            max-height: 60px;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            color: #333 !important;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }

        /* Page Header */
        .page-header {
            background-color: var(--primary);
            color: white;
            padding: 80px 0;
            position: relative;
        }

        .page-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(78, 115, 223, 0.9) 0%, rgba(58, 86, 176, 0.8) 100%);
            z-index: 1;
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .page-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .page-header .breadcrumb-item, .page-header .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
        }

        .page-header .breadcrumb-item.active {
            color: #fff;
        }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Contact Info Card */
        .contact-info-card {
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #fff;
            transition: all 0.3s ease;
            height: 100%;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .contact-title {
            font-weight: 600;
            margin-bottom: 10px;
            text-align: center;
        }

        .contact-text {
            text-align: center;
            margin-bottom: 0;
        }

        /* Contact Form */
        .contact-form {
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #fff;
        }

        .form-control {
            border-radius: 5px;
            padding: 12px 15px;
            font-size: 1rem;
            border: 1px solid #ced4da;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        /* Map */
        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer Styles */
        .footer {
            background-color: #1a1e25;
        }

        .footer-title {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #adb5bd;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }

        .footer-divider {
            background-color: rgba(255,255,255,0.1);
        }

        .copyright {
            color: #adb5bd;
            font-size: 0.9rem;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--primary);
            color: #fff;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .page-header {
                padding: 60px 0;
            }
        }

        @media (max-width: 767.98px) {
            .page-header {
                padding: 50px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
        }
