
        :root {
            --primary-color: #FF5E6C;
            --secondary-color: #00A0A0;
            --background-color: #F7C331;
            --text-color: #FFFFFF;
            --accent-color: #4F5F76;
            --light-bg: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--accent-color);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav {
            text-align: center;
        }
        
        .navbar-nav .nav-link {
            color: var(--accent-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--secondary-color);
            color: var(--text-color);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(255,94,108,0.9), rgba(0,160,160,0.9)), url('https://plus.unsplash.com/premium_photo-1661443781814-333019eaad2d?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8ZmluYW5jaWFsfGVufDB8fDB8fHww&fm=jpg&q=60&w=3000');
            background-size: cover;
            background-position: center;
            color: var(--text-color);
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-hero {
            background-color: var(--background-color);
            color: var(--accent-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background-color: var(--text-color);
            color: var(--accent-color);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--accent-color);
            text-align: center;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--light-bg);
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .btn-read-more {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn-read-more:hover {
            background-color: var(--secondary-color);
            color: var(--text-color);
            text-decoration: none;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .counter-item {
            text-align: center;
            padding: 20px 0;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-text {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Vision & Mission Section */
        .vision-mission-item {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .vision-mission-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .vision-mission-item i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .vision-mission-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        /* Why Choose Us Section */
        .why-choose-item {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--light-bg);
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .why-choose-item:hover {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .why-choose-item:hover i {
            color: var(--text-color);
        }
        
        .why-choose-item i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .why-choose-item h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-section {
            background-color: var(--light-bg);
        }
        
        .service-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-image {
            height: 400px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-content p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: var(--background-color);
            color: var(--accent-color);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .btn-cta-large:hover {
            background-color: var(--text-color);
            color: var(--accent-color);
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button {
            font-weight: 600;
        }
        
        /* Review Section */
        .review-section {
            background-color: var(--light-bg);
        }
        
        .review-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .review-info p {
            font-size: 0.9rem;
            color: #777;
        }
        
        .review-rating {
            color: var(--background-color);
            margin-bottom: 15px;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--secondary-color);
            color: var(--text-color);
            text-align: center;
            padding: 60px 0;
        }
        
        .newsletter-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            border: none;
            border-radius: 30px;
            padding: 12px 20px;
            margin-bottom: 15px;
            width: 100%;
        }
        
        .btn-newsletter {
            background-color: var(--background-color);
            color: var(--accent-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .btn-newsletter:hover {
            background-color: var(--text-color);
            color: var(--accent-color);
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-form .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .btn-contact {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-contact:hover {
            background-color: var(--secondary-color);
            color: var(--text-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 70px 0 20px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--background-color);
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--background-color);
            padding-left: 5px;
        }
        
        .footer-newsletter input {
            border: none;
            border-radius: 30px;
            padding: 10px 15px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .btn-footer {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .btn-footer:hover {
            background-color: var(--background-color);
            color: var(--accent-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .copyright p {
            margin-bottom: 0;
        }
        
        .copyright a {
            color: var(--background-color);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }
