* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', sans-serif;
        }
        
        body {
            color: #2d3a4b;
            background: #f8fafc;
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 0 0 15px 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 10px 20px;
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: #4a90e2 !important;
            display: flex;
            align-items: center;
        }
        .navbar-brand img{
            max-height: 40px;
            max-width: 50px;
            border: 0.5px black solid;
            border-radius: 55%;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 28px;
        }

        .navbar-brand span {
            color: #2d3a4b;
        }

        .nav-link {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: #2d3a4b !important;
            margin: 0 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #4a90e2 !important;
            background-color: rgba(74, 144, 226, 0.1);
        }

        .nav-link.active {
            color: #4a90e2 !important;
            background-color: rgba(74, 144, 226, 0.1);
            font-weight: 600;
        }

        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74, 144, 226, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .btn-outline-success {
            color: #4a90e2;
            border-color: #4a90e2;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
        }

        .btn-outline-success:hover {
            background-color: #4a90e2;
            border-color: #4a90e2;
            color: white;
        }

        .form-control {
            border-color: #4a90e2;
            border-radius: 8px;
        }

        .form-control:focus {
            border-color: #4a90e2;
            box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
        }

        /* About Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
        }

        .about-hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: #2d3a4b;
            margin-bottom: 20px;
        }

        .about-hero p {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Services Section */
        .services-section {
            padding: 40px 0;
            margin-bottom: 60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3a4b;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
        }

        .service-detail {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            padding: 30px;
            transition: transform 0.3s ease;
        }

        .service-detail:hover {
            transform: translateY(-5px);
        }

        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #4a90e2 0%, #3a7cd3 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 30px;
            color: white;
        }

        .service-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #2d3a4b;
        }

        .service-content {
            color: #4a5568;
            line-height: 1.8;
        }

        .service-features {
            list-style-type: none;
            margin-top: 20px;
        }

        .service-features li {
            margin-bottom: 12px;
            padding-left: 28px;
            position: relative;
        }
        
        .service-features li:before {
            content: "•";
            color: #4a90e2;
            font-size: 24px;
            position: absolute;
            left: 0;
            top: -4px;
        }
        
        .service-features strong {
            color: #2d3a4b;
            font-weight: 600;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #2d3a4b 0%, #1a202c 100%);
            color: white;
            padding: 60px 0 30px;
            margin-top: 40px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo-icon {
            font-size: 32px;
            color: #4a90e2;
            margin-right: 12px;
        }
        
        .footer-logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: white;
        }
        
        .footer-logo-text span {
            color: #4a90e2;
        }
        
        .footer-about {
            max-width: 300px;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #cbd5e0;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #4a90e2;
            transform: translateY(-3px);
        }
        
        .footer-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: #4a90e2;
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: #4a90e2;
            transform: translateX(5px);
        }
        
        .footer-links i {
            margin-right: 10px;
            font-size: 14px;
            width: 20px;
            text-align: center;
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            margin-right: 15px;
            font-size: 20px;
            color: #4a90e2;
            margin-top: 3px;
        }
        
        .footer-contact div {
            color: #cbd5e0;
            line-height: 1.6;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #cbd5e0;
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: #4a90e2;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .payment-methods i {
            font-size: 28px;
            color: #cbd5e0;
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
                padding: 20px;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                margin-top: 10px;
            }
            
            .nav-link {
                margin: 5px 0;
                padding: 10px 15px !important;
            }
            
            .form-control {
                margin-top: 15px;
            }
            
            .btn-outline-success {
                width: 100%;
                margin-top: 10px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-about {
                max-width: 100%;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .footer-contact li {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .about-hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .service-title {
                font-size: 1.4rem;
            }
            
            .footer-logo {
                justify-content: center;
            }
        }