
        /* Google Reviews Floating Widget */
        .google-reviews-widget {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9998;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 10px 12px;
            min-width: 230px;
            max-width: 280px;
            width: auto;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .google-reviews-widget:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .google-reviews-widget-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .google-icon-wrapper {
            flex-shrink: 0;
        }

        .rating-info {
            line-height: 1.2;
        }

        .rating-info p {
            margin-bottom: 2px;
            font-size: 11px;
        }

        .rating-value {
            margin: 2px 0;
        }

        .stars .fa-star {
            font-size: 12px;
        }

        .google-reviews-info {
            flex: 1;
        }

        .google-reviews-label {
            font-size: 12px;
            color: #5f6368;
            font-weight: 500;
            margin-bottom: 2px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .google-reviews-rating {
            font-size: 24px;
            font-weight: 700;
            color: #202124;
            line-height: 1;
            margin-bottom: 4px;
        }

        .google-reviews-count {
            font-size: 11px;
            color: #80868b;
            line-height: 1.2;
        }

        .google-reviews-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: transparent;
            border: none;
            color: #5f6368;
            font-size: 14px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.2s ease;
            z-index: 1;
        }

        .google-reviews-close:hover {
            background: #f1f3f4;
            color: #202124;
        }

        /* Google Reviews Sidebar */
        .google-reviews-sidebar {
            position: fixed;
            right: -450px;
            top: 0;
            bottom: 0;
            width: 400px;
            max-width: 90vw;
            background: #ffffff;
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
            z-index: 99999999999;
            display: flex;
            flex-direction: column;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 1px solid rgba(0, 0, 0, 0.08);
        }

        .google-reviews-sidebar.active {
            right: 0;
        }

        .google-reviews-sidebar-header {
            padding: 24px;
            border-bottom: 1px solid #e8eaed;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f8f9fa;
        }

        .sidebar-title-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .google-icon-sidebar {
            flex-shrink: 0;
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: 600;
            color: #202124;
            line-height: 1.2;
        }

        .sidebar-subtitle {
            font-size: 14px;
            color: #5f6368;
            margin-top: 2px;
        }

        .google-reviews-sidebar-close {
            background: transparent;
            border: none;
            color: #5f6368;
            font-size: 18px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .google-reviews-sidebar-close:hover {
            background: #e8eaed;
            color: #202124;
        }

        .google-reviews-sidebar-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .view-all-reviews-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: #1a73e8;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s ease;
            margin-bottom: 24px;
            width: 100%;
            justify-content: center;
        }

        .view-all-reviews-btn:hover {
            background: #1557b0;
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
        }

        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .review-item {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            border: 1px solid #e8eaed;
            transition: all 0.2s ease;
        }

        .review-item:hover {
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .review-item-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar-wrapper {
            flex-shrink: 0;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .reviewer-avatar-initials {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a73e8;
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
        }

        .reviewer-info {
            flex: 1;
            min-width: 0;
        }

        .reviewer-name {
            font-size: 15px;
            font-weight: 600;
            color: #202124;
            margin-bottom: 6px;
        }

        .review-stars {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .review-stars .fa-star {
            font-size: 12px;
            color: #dadce0;
        }

        .review-stars .fa-star.star-filled {
            color: #fbbc04;
        }

        .review-date {
            font-size: 12px;
            color: #5f6368;
            margin-left: 8px;
        }

        .review-text-content {
            font-size: 14px;
            line-height: 1.6;
            color: #3c4043;
            word-wrap: break-word;
        }

        /* Overlay when sidebar is open */
        .google-reviews-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999999998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .google-reviews-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            clip-path: polygon(0 0, calc(100% - 400px) 0, calc(100% - 400px) 100%, 0 100%);
        }

        /* Ensure sidebar is above overlay and clickable */
        .google-reviews-sidebar.active {
            right: 0;
            z-index: 99999999999;
        }

        /* Ensure sidebar and its content are always interactive, even when overlay is active */
        .google-reviews-sidebar {
            pointer-events: auto !important;
        }

        .google-reviews-sidebar * {
            pointer-events: auto !important;
        }

        @media (max-width: 768px) {
            .google-reviews-overlay.active {
                clip-path: none;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .google-reviews-widget {
                right: 10px;
                bottom: 10px;
                padding: 12px;
                min-width: 160px;
                max-width: 200px;
                width: auto;
            }

            .google-reviews-rating {
                font-size: 20px;
            }

            .google-reviews-count {
                font-size: 10px;
            }

            .google-icon {
                width: 28px;
                height: 28px;
            }

            .google-reviews-sidebar {
                width: 100%;
                max-width: 100%;
                right: -100%;
            }

            .google-reviews-sidebar.active {
                right: 0;
            }
        }

        /* Intro Section Image Styling */
        .intro-section {
            padding: 2rem 0;
        }

        .intro-image {
            max-width: 100%;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }

        .intro-image img {
            max-width: 100%;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .intro-content {
            padding-left: 1.5rem;
            min-height: 400px;
        }

        /* Stack columns on screens smaller than 1024px (lg breakpoint) */
        @media (max-width: 1023px) {
            .intro-section .row {
                flex-direction: column;
            }

            .intro-image {
                min-height: 300px;
                height: auto;
            }

            .intro-image img {
                height: auto;
                max-height: 400px;
                object-fit: contain;
            }

            .intro-content {
                min-height: auto;
                padding-left: 0;
                margin-top: 1.5rem;
            }
        }

        .intro-content h2.title {
            font-size: 2rem;
            line-height: 1.3;
        }

        .intro-content h3 {
            font-size: 1.5rem;
        }

        .intro-content p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Tablet and Medium Screens */
        @media (max-width: 992px) {
            .intro-image {
                min-height: 300px;
                height: auto;
            }

            .intro-content {
                padding-left: 0;
                margin-top: 1.5rem;
                min-height: auto;
            }

            .intro-content h2.title {
                font-size: 1.75rem;
            }

            .intro-content h3 {
                font-size: 1.35rem;
            }

            .intro-image img {
                height: auto;
                max-height: 400px;
                object-fit: contain;
            }
        }

        /* Mobile Screens */
        @media (max-width: 768px) {
            .intro-section {
                padding: 1.5rem 0;
            }

            .intro-image {
                margin-bottom: 1.5rem;
                min-height: 300px;
            }

            .intro-image img {
                height: auto;
                max-height: 300px;
                width: 100%;
            }

            .intro-content {
                padding-left: 0;
                margin-top: 1rem;
                text-align: center;
                min-height: auto;
            }

            .intro-content h2.title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .intro-content h3 {
                font-size: 1.25rem;
                margin-bottom: 0.75rem;
            }

            .intro-content p {
                font-size: 0.95rem;
                margin-bottom: 1rem;
            }
        }

        /* Small Mobile Screens */
        @media (max-width: 576px) {
            .intro-section {
                padding: 1rem 0;
            }

            .intro-image img {
                max-height: 250px;
            }

            .intro-content h2.title {
                font-size: 1.35rem;
            }

            .intro-content h3 {
                font-size: 1.15rem;
            }

            .intro-content p {
                font-size: 0.9rem;
            }
        }

        .highlight .container {
            display: grid;
            gap: 32px;
            padding-top: 48px;
            padding-bottom: 88px;
        }

        .highlight-box {
            text-align: center;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
            padding: 24px 48px;
        }

        .highlight-box img {
            width: auto;
        }

        .highlight-box .title {
            font-size: 16px;
            line-height: 130%;
            font-weight: 600;
            margin-top: 8px;
            margin-bottom: 8px;
        }

        .highlight-box p {
            font-size: 14px;
        }

        .Fast-delivery {
            background-color: var(--secondary);
            padding-bottom: 12px;
        }

        .fd-cnt,
        .hc-cnt,
        .bd-cnt,
        .years-cnt {
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 12px;
        }

        .fd-cnt .title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .fd-cnt p,
        .hc-cnt p,
        .bd-cnt p,
        .years-cnt p {
            font-size: 20px;
            font-weight: 500;
            margin: 0;
            line-height: 1.3;
        }

        .Fast-delivery img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .Fast-delivery .container {
            display: grid;
            gap: 12px;
            align-items: center;
        }

        @media screen and (min-width: 767px) {
            .highlight .container {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .Fast-delivery .container {
                grid-template-columns: 1fr 1fr 1fr 1fr;
            }
        }

        @media screen and (max-width: 767px) {

            .fd-cnt,
            .hc-cnt,
            .bd-cnt,
            .years-cnt {
                justify-content: center;
                flex-direction: column;
                gap: 0px;
                text-align: center;
                margin-bottom: 24px;
            }

            .Fast-delivery.gradient {
                background: #016892;
                background: linear-gradient(0deg, rgba(1, 104, 146, 1) 0%, rgba(3, 166, 233, 1) 100%);
            }

            .Fast-delivery img {
                width: 48px;
                height: 48px;
            }

            .hc-cnt img,
            .bd-cnt img,
            .years-cnt img {
                margin-bottom: 12px;
            }

            .fd-cnt .title {
                font-size: 16px;
            }

            .hc-cnt p,
            .bd-cnt p,
            .years-cnt p {
                font-size: 14px;
            }
        }

        /* Testimonials Section Styles */
        .testimonials-section {
            background: #f8f9fa;
            padding: 3rem 0;
            border-radius: 12px;
            margin: 3rem 0;
        }

        .testimonials-slider {
            padding: 20px 0 50px 0;
            overflow: hidden;
        }

        .testimonials-slider .swiper-slide {
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            width: 100%;
            flex: 1;
            height: 100%;
            box-sizing: border-box;
            min-height: 300px;
            max-height: 300px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .testimonial-card.expanded-card {
            max-height: none;
        }

        .testimonials-slider .swiper-slide-active .testimonial-card,
        .testimonials-slider .swiper-slide:hover .testimonial-card {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .testimonial-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            flex-shrink: 0;
        }

        .testimonial-avatar .avatar-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-avatar .avatar-initials {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #54b12b;
            color: #ffffff;
            font-weight: 600;
            font-size: 20px;
            text-transform: uppercase;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 600;
            color: #052f3f;
            margin-bottom: 8px;
        }

        .testimonial-stars {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 6px;
        }

        .testimonial-stars .fa-star {
            font-size: 14px;
            color: #dadce0;
        }

        .testimonial-stars .fa-star.star-filled {
            color: #fbbc04;
        }

        .testimonial-date {
            font-size: 12px;
            color: #666;
        }

        .testimonial-content {
            flex: 1;
            position: relative;
            overflow: hidden;
            max-height: 150px;
        }

        .testimonial-content.expanded {
            max-height: none;
            overflow: visible;
        }

        .testimonial-content p {
            font-size: 15px;
            line-height: 1.7;
            color: #333;
            margin: 0;
            font-style: italic;
            position: relative;
            padding-left: 35px;
            padding-right: 10px;
        }

        .testimonial-content p::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -8px;
            font-size: 56px;
            font-family: Georgia, serif;
            color: #54b12b;
            line-height: 1;
            opacity: 0.4;
            font-weight: bold;
        }

        .testimonial-content p::after {
            content: '"';
            font-size: 56px;
            font-family: Georgia, serif;
            color: #54b12b;
            line-height: 0.3;
            opacity: 0.4;
            font-weight: bold;
            display: inline-block;
            vertical-align: bottom;
            margin-left: 5px;
        }

        .testimonial-read-more {
            color: #54b12b;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            display: inline-block;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .testimonial-read-more:hover {
            color: #45a020;
            text-decoration: underline;
        }

        .testimonial-read-more.hidden {
            display: none;
        }

        .testimonials-nav {
            display: flex;
            gap: 10px;
        }

        @media screen and (max-width: 767px) {
            .testimonials-nav {
                display: none !important;
            }

            .testimonials-section {
                padding: 2rem 0;
                margin: 2rem 0;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-avatar .avatar-img,
            .testimonial-avatar .avatar-initials {
                width: 50px;
                height: 50px;
            }

            .testimonial-name {
                font-size: 16px;
            }

            .testimonial-content p {
                font-size: 14px;
            }

            .testimonial-card {
                min-height: 280px;
                max-height: 280px;
            }

            .testimonial-card.expanded-card {
                max-height: none;
            }

            .testimonial-content {
                max-height: 120px;
            }

            .testimonial-content.expanded {
                max-height: none;
            }

            .testimonial-content p::before {
                font-size: 40px;
                top: -5px;
            }

            .testimonial-content p::after {
                font-size: 40px;
            }
        }

        /* Best Selling Products Carousel Styles */
        .best-selling-products {
            position: relative;
        }

        .best-selling-products .best-selling-nav {
            display: flex;
            gap: 10px;
        }

        .best-selling-slider {
            padding: 20px 0 50px 0;
            overflow: hidden;
        }

        /* Category tabs slider nav positioning */
        .tab-content .position-relative {
            min-height: 60px;
            margin-bottom: 20px;
            padding-top: 20px;
        }

        .tab-content .best-selling-nav {
            top: -20px !important;
            transform: none !important;
        }

        .best-selling-slider .swiper-slide {
            height: auto;
            display: flex;
        }

        .best-selling-slider .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            background: #fff;
            padding: 15px;
        }

        .best-selling-slider .swiper-slide-active .product-card,
        .best-selling-slider .swiper-slide:hover .product-card {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .best-selling-slider .card-image {
            overflow: hidden;
            background: #f8f9fa;
            min-height: 200px;
        }

        .best-selling-slider .card-image img {
            transition: transform 0.3s ease;
            width: 100%;
            height: auto;
            max-height: 250px;
            object-fit: contain;
        }

        .best-selling-slider .swiper-slide:hover .card-image img {
            transform: scale(1.05);
        }

        .best-selling-slider .card-title {
            margin-bottom: 15px;
        }

        .best-selling-slider .card-title h2 {
            margin: 0;
            padding: 0;
        }

        .best-selling-slider .card-action {
            margin-top: 15px;
            text-align: center;
        }

        .best-selling-prev,
        .best-selling-next,
        .category-nav-btn,
        .testimonials-prev,
        .testimonials-next {
            width: 40px;
            height: 40px;
            background: #54b12b;
            border-radius: 50%;
            color: #fff;
            position: relative;
            margin-top: 0;
            top: 0;
            left: 0;
            right: 0;
        }

        .best-selling-prev::after,
        .best-selling-next::after,
        .category-nav-btn::after,
        .testimonials-prev::after,
        .testimonials-next::after {
            font-size: 16px;
            font-weight: bold;
        }

        .best-selling-prev:hover,
        .best-selling-next:hover,
        .category-nav-btn:hover,
        .testimonials-prev:hover,
        .testimonials-next:hover {
            background: #45a020;
        }

        @media screen and (max-width: 767px) {
            .best-selling-products .best-selling-nav {
                display: none !important;
            }

            .best-selling-products .title {
                text-align: center;
            }
        }

        /* Category Tabs Styles */
        .category-tabs {
            margin-bottom: 30px;
            position: relative;
        }

        .category-tabs-slider {
            overflow: hidden;
            padding-right: 90px;
        }

        .category-tabs .nav-tabs {
            border-bottom: 2px solid #e9ecef;
            display: flex;
            flex-wrap: nowrap;
        }

        .category-tabs .nav-item {
            margin-bottom: -2px;
            width: auto;
            flex-shrink: 0;
        }

        .category-tabs .category-tab-link {
            color: #666;
            font-weight: 500;
            font-size: 16px;
            padding: 12px 24px;
            border: none;
            border-bottom: 3px solid transparent;
            background: transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .category-tabs .category-tab-link:hover {
            color: #54b12b;
            border-bottom-color: #54b12b;
            background: transparent;
        }

        .category-tabs .category-tab-link.active {
            color: #54b12b;
            border-bottom-color: #54b12b;
            background: transparent;
            font-weight: 600;
        }

        .category-tabs-nav {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .category-tabs-prev,
        .category-tabs-next {
            width: 30px;
            height: 30px;
            background: #54b12b;
            border-radius: 50%;
            color: #fff;
            position: relative;
            margin-top: 0;
            top: 0;
            left: 0;
            right: 0;
        }

        .category-tabs-prev::after,
        .category-tabs-next::after {
            font-size: 12px;
            font-weight: bold;
        }

        .category-tabs-prev:hover,
        .category-tabs-next:hover {
            background: #45a020;
        }

        .category-tabs .tab-pane {
            display: none;
        }

        .category-tabs .tab-pane.show,
        .category-tabs .tab-pane.active {
            display: block;
        }

        @media screen and (max-width: 767px) {
            .category-tabs-slider {
                padding-right: 75px;
            }

            .category-tabs .category-tab-link {
                font-size: 14px;
                padding: 10px 16px;
            }

            .category-tabs-prev,
            .category-tabs-next {
                width: 30px;
                height: 30px;
            }

            .category-tabs-prev::after,
            .category-tabs-next::after {
                font-size: 12px;
            }
        }

        /* Page Content Elegant Styling */
        .page-content-wrapper {
            margin: 0 auto;
            background: #fff;
            line-height: 1.8;
            color: #333;
        }

        .page-content-wrapper h1,
        .page-content-wrapper h2,
        .page-content-wrapper h3,
        .page-content-wrapper h4,
        .page-content-wrapper h5,
        .page-content-wrapper h6 {
            color: #052f3f;
            font-weight: 600;
            margin-top: 2em;
            margin-bottom: 1em;
            line-height: 1.4;
        }

        .page-content-wrapper h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid #54b12b;
            padding-bottom: 15px;
        }

        .page-content-wrapper h2 {
            font-size: 2rem;
            border-bottom: 2px solid #54b12b;
            padding-bottom: 10px;
        }

        .page-content-wrapper h3 {
            font-size: 1.75rem;
            color: #54b12b;
        }

        .page-content-wrapper h4 {
            font-size: 1.5rem;
        }

        .page-content-wrapper p {
            margin-bottom: 1.5em;
            font-size: 1.05rem;
            color: #555;
        }

        .page-content-wrapper p:first-child {
            font-size: 1.15rem;
            color: #333;
            font-weight: 400;
        }

        .page-content-wrapper ul,
        .page-content-wrapper ol {
            margin: 1.5em 0;
            padding-left: 2em;
        }

        .page-content-wrapper li {
            margin-bottom: 0.8em;
            color: #555;
        }

        .page-content-wrapper ul li {
            list-style-type: none;
            position: relative;
            padding-left: 1.5em;
        }

        .page-content-wrapper ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #54b12b;
            font-weight: bold;
            font-size: 1.2em;
        }

        .page-content-wrapper ol li {
            list-style-type: decimal;
        }

        .page-content-wrapper a {
            color: #54b12b;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .page-content-wrapper a:hover {
            color: #45a020;
            border-bottom-color: #45a020;
        }

        .page-content-wrapper strong,
        .page-content-wrapper b {
            color: #052f3f;
            font-weight: 600;
        }

        .page-content-wrapper em,
        .page-content-wrapper i {
            font-style: italic;
            color: #666;
        }

        .page-content-wrapper blockquote {
            border-left: 4px solid #54b12b;
            padding: 20px 30px;
            margin: 2em 0;
            background: #f8f9fa;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #555;
        }

        .page-content-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 2em 0;
        }

        .page-content-wrapper table {
            width: 100%;
            border-collapse: collapse;
            margin: 2em 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .page-content-wrapper table th {
            background: #54b12b;
            color: #fff;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        .page-content-wrapper table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e9ecef;
        }

        .page-content-wrapper table tr:last-child td {
            border-bottom: none;
        }

        .page-content-wrapper table tr:nth-child(even) {
            background: #f8f9fa;
        }

        .page-content-wrapper hr {
            border: none;
            border-top: 2px solid #e9ecef;
            margin: 3em 0;
        }

        @media screen and (max-width: 767px) {
            .page-content-wrapper {
                padding: 25px 20px;
                margin: 0 15px;
            }

            .page-content-wrapper h1 {
                font-size: 2rem;
            }

            .page-content-wrapper h2 {
                font-size: 1.75rem;
            }

            .page-content-wrapper h3 {
                font-size: 1.5rem;
            }

            .page-content-wrapper p {
                font-size: 1rem;
            }
        }
 