        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        /* Top Banner */
        .top-banner {
            background-color: #3d1f0f;
            color: white;
            padding: 12px 0;
            font-size: 14px;
        }

        .top-banner a {
            color: white;
            text-decoration: underline;
        }

        .top-banner .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            padding: 0 8px;
            line-height: 1;
        }

        .top-banner .support-text {
            white-space: nowrap;
        }

        .top-banner .promo-text {
            text-align: center;
        }

        /* Header - FAQ Style */
        .navbar {
            padding: 15px 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 20px;
            color: #1a1a1a !important;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: translateX(3px);
        }

        .logo-circle {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(61, 31, 15, 0.3);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .logo-circle {
            transform: rotate(360deg);
            box-shadow: 0 5px 15px rgba(61, 31, 15, 0.4);
        }

        .navbar-nav {
            align-items: center;
        }

        .navbar-nav .nav-link {
            color: #1a1a1a;
            margin: 0 15px;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px;
            transition: all 0.3s ease;
            border-radius: 6px;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, #f4b860, #e5a850);
            transition: transform 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #3d1f0f;
            background-color: rgba(244, 184, 96, 0.1);
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            font-size: 19px;
            align-items: center;
        }

        .nav-icons i {
            cursor: pointer;
            color: #1a1a1a;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 50%;
        }

        .nav-icons i:hover {
            color: #3d1f0f;
            background-color: rgba(244, 184, 96, 0.15);
            transform: scale(1.1);
        }

        .navbar-toggler {
            border: none;
            padding: 8px;
            border-radius: 6px;
            position: relative;
            background-color: rgba(61, 31, 15, 0.05);
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background-color: rgba(61, 31, 15, 0.1);
        }

        .navbar-toggler:focus {
            box-shadow: none;
            background-color: rgba(61, 31, 15, 0.15);
        }

        .navbar-toggler-icon {
            width: 26px;
            height: 2px;
            background-color: #3d1f0f;
            display: block;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            width: 26px;
            height: 2px;
            background-color: #3d1f0f;
            left: 0;
            transition: all 0.3s ease;
        }

        .navbar-toggler-icon::before {
            top: -8px;
        }

        .navbar-toggler-icon::after {
            top: 8px;
        }
          .navbar-toggler:hover .navbar-toggler-icon::before {
            top: -9px;
        }

        .navbar-toggler:hover .navbar-toggler-icon::after {
            top: 9px;
        }


        /* Mobile Menu Enhancement */
        .navbar-collapse {
            transition: all 0.4s ease;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: white;
                padding: 20px 15px;
                margin-top: 15px;
                border-radius: 8px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
        }

        /* Hero Section */
        .hero-section {
            background-color: #f5f5f5;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before,
        .hero-section::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23ddd"/><circle cx="30" cy="20" r="2" fill="%23ddd"/><circle cx="50" cy="15" r="2" fill="%23ddd"/><circle cx="70" cy="25" r="2" fill="%23ddd"/><circle cx="20" cy="40" r="2" fill="%23ddd"/></svg>');
            opacity: 0.5;
        }

        .hero-section::before {
            top: 30px;
            right: 30px;
        }

        .hero-section::after {
            bottom: 30px;
            left: 30px;
        }

        .hero-section h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .breadcrumb-item {
            font-size: 15px;
        }

        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-item a:hover {
            color: #3d1f0f;
        }

        .breadcrumb-item.active {
            color: #1a1a1a;
        }

        /* Our Story Section */
        .story-section {
            padding: 80px 0;
            text-align: center;
        }

        .section-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .section-description {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 36px;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .signature-role {
            font-size: 14px;
            color: #666;
        }

        /* Image Grid */
        .image-grid {
            margin-top: 50px;
            margin-bottom: 0;
        }

        .image-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .grid-large {
            height: 350px;
        }

        .grid-small {
            height: 170px;
        }

        /* Stats Bar */
        .stats-bar {
            background: linear-gradient(135deg, #3d1f0f 0%, #5a2f18 50%, #3d1f0f 100%);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="15" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
            opacity: 0.3;
        }

        .stats-bar .row {
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 20px 15px;
            position: relative;
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: linear-gradient(to bottom, transparent, rgba(244, 184, 96, 0.3), transparent);
        }

        .col-lg:last-child .stat-item::after {
            display: none;
        }

        @media (max-width: 991px) {
            .col-md-3:nth-child(4) .stat-item::after {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .col-6:nth-child(even) .stat-item::after {
                display: none;
            }
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #f4b860;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
            text-shadow: 0 2px 10px rgba(244, 184, 96, 0.3);
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        /* Product Quality Section */
        .quality-section {
            padding: 80px 0;
        }

        .quality-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .quality-content {
            padding: 40px;
        }

        .feature-box {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon img {
            width: 45px;
            height: 45px;
        }

        .feature-icon i {
            font-size: 40px;
            color: #f4b860;
        }

        .feature-text h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .feature-text p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Values Section - New Section Replacing Team */
        .values-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            position: relative;
        }

        .values-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23f4b860" stroke-width="0.5" opacity="0.1"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .values-grid {
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            height: 100%;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f4b860, #e5a850);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: #f4b860;
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon-wrapper {
            background: linear-gradient(135deg, #f4b860 0%, #e5a850 100%);
            transform: rotate(360deg);
        }

        .value-icon-wrapper i {
            font-size: 45px;
            color: #f4b860;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon-wrapper i {
            color: white;
        }

        .value-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
            transition: color 0.3s ease;
        }

        .value-card:hover h3 {
            color: #3d1f0f;
        }

        .value-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        /* Testimonials Section - Additional New Section */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #3d1f0f 0%, #2a1508 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 5%;
            font-size: 200px;
            color: rgba(255,255,255,0.05);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .testimonial-rating {
            color: #f4b860;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
            color: rgba(255,255,255,0.9);
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f4b860, #e5a850);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: #1a1a1a;
        }

        .testimonial-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 3px;
            color: white;
        }

        .testimonial-info p {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            margin: 0;
        }

        /* Features Bottom Section */
        .features-bottom {
            padding: 60px 0;
            background-color: white;
        }

        .feature-bottom-box {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            transition: transform 0.3s;
        }

        .feature-bottom-box:hover {
            transform: translateX(5px);
        }

        .feature-bottom-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-bottom-icon i {
            font-size: 42px !important;
            color: #f4b860;
        }

        .feature-bottom-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .feature-bottom-content p {
            margin: 0;
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background-color: #3d1f0f;
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: white;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .footer-social i {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .footer-social i:hover {
            background-color: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.5);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 25px;
            font-size: 14px;
            color: #ccc;
        }

        .footer-selects {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer-selects select {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .footer-selects select:hover {
            border-color: rgba(255,255,255,0.5);
        }

        .footer-selects select option {
            background-color: #3d1f0f;
            color: white;
        }

        .footer p {
            font-size: 14px;
            line-height: 1.7;
            color: #ccc;
        }

        /* RESPONSIVE DESIGN */
        
        /* Tablet Landscape (992px - 1199px) */
        @media (min-width: 992px) and (max-width: 1199px) {
            .container {
                max-width: 960px;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 19px;
            }

            .logo-circle {
                width: 42px;
                height: 42px;
                font-size: 19px;
            }

            .navbar-nav .nav-link {
                margin: 0 12px;
                font-size: 14px;
                padding: 7px 14px;
            }

            .hero-section h1 {
                font-size: 44px;
            }

            .section-title {
                font-size: 38px;
            }

            .grid-large {
                height: 320px;
            }

            .grid-small {
                height: 155px;
            }

            .quality-content {
                padding: 30px;
            }

            .value-card {
                padding: 35px 25px;
            }

            .value-icon-wrapper {
                width: 80px;
                height: 80px;
            }

            .value-icon-wrapper i {
                font-size: 40px;
            }

            .testimonial-card {
                padding: 30px;
                min-height: 320px;
            }

            .testimonial-text {
                font-size: 14px;
                margin-bottom: 20px;
            }
        }

        /* Tablet Portrait (768px - 991px) */
        @media (min-width: 768px) and (max-width: 991px) {
            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 18px;
            }

            .logo-circle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .navbar-nav {
                margin-top: 20px;
                width: 100%;
                align-items: center;
            }

            .navbar-nav .nav-link {
                margin: 8px 0;
                padding: 12px 20px;
                text-align: center;
                font-size: 15px;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .nav-icons {
                margin-top: 20px;
                justify-content: center;
                width: 100%;
            }

            .hero-section {
                padding: 60px 20px;
            }

            .hero-section h1 {
                font-size: 40px;
            }

            .story-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .grid-large {
                height: 300px;
                margin-bottom: 15px;
            }

            .grid-small {
                height: 145px;
            }

            .quality-section {
                padding: 60px 20px;
            }

            .quality-content {
                padding: 30px 0;
                margin-top: 30px;
            }

            .values-section {
                padding: 60px 20px;
            }

            .value-card {
                margin-bottom: 25px;
            }

            .testimonials-section {
                padding: 60px 20px;
            }

            .testimonial-card {
                margin-bottom: 25px;
                padding: 30px;
                min-height: 300px;
            }

            .features-bottom {
                padding: 50px 20px;
            }

            .feature-bottom-box {
                margin-bottom: 15px;
            }
        }

        /* Mobile Large (576px - 767px) */
        @media (min-width: 576px) and (max-width: 767px) {
            .top-banner {
                font-size: 12px;
                padding: 10px 15px;
            }

            .top-banner .support-text {
                font-size: 11px;
            }

            .top-banner .promo-text {
                font-size: 11px;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 17px;
            }

            .logo-circle {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }

            .navbar-nav {
                margin-top: 15px;
                align-items: center;
            }

            .navbar-nav .nav-link {
                margin: 5px 0;
                padding: 12px 20px;
                text-align: center;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .nav-icons {
                margin-top: 15px;
                justify-content: center;
                gap: 20px;
            }

            .hero-section {
                padding: 50px 20px;
            }

            .hero-section h1 {
                font-size: 34px;
            }

            .story-section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 30px;
            }

            .section-description {
                font-size: 14px;
            }

            .grid-large {
                height: 280px;
                margin-bottom: 15px;
            }

            .grid-small {
                height: 220px;
                margin-bottom: 15px;
            }

            .stats-bar {
                padding: 35px 15px;
            }

            .stat-item {
                margin-bottom: 20px;
            }

            .quality-section {
                padding: 50px 20px;
            }

            .quality-content {
                padding: 25px 0;
                margin-top: 25px;
            }

            .feature-box {
                margin-top: 30px;
            }

            .values-section {
                padding: 50px 20px;
            }

            .value-card {
                margin-bottom: 25px;
                padding: 35px 25px;
            }

            .testimonials-section {
                padding: 50px 20px;
            }

            .testimonial-card {
                margin-bottom: 25px;
                padding: 30px;
                min-height: 280px;
            }

            .testimonial-text {
                font-size: 14px;
            }

            .testimonial-author {
                gap: 12px;
            }

            .testimonial-avatar {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .features-bottom {
                padding: 45px 20px;
            }

            .footer {
                padding: 50px 20px 25px;
            }
        }

        /* Mobile Medium (400px - 575px) */
        @media (min-width: 400px) and (max-width: 575px) {
            .top-banner {
                font-size: 11px;
                padding: 10px 12px;
            }

            .top-banner .support-text {
                display: none;
            }

            .top-banner .promo-text {
                font-size: 10px;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 16px;
            }

            .logo-circle {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .navbar-nav {
                align-items: center;
            }

            .nav-icons {
                justify-content: center;
            }

            .hero-section {
                padding: 45px 18px;
            }

            .hero-section h1 {
                font-size: 30px;
            }

            .breadcrumb-item {
                font-size: 14px;
            }

            .story-section {
                padding: 45px 18px;
            }

            .section-title {
                font-size: 27px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .section-description {
                font-size: 13px;
            }

            .signature {
                font-size: 28px;
            }

            .grid-large {
                height: 240px;
                margin-bottom: 15px;
            }

            .grid-small {
                height: 190px;
                margin-bottom: 15px;
            }

            .stats-bar {
                padding: 30px 15px;
            }

            .stat-item {
                margin-bottom: 18px;
            }

            .stat-number {
                font-size: 30px;
            }

            .quality-section {
                padding: 45px 18px;
            }

            .quality-content {
                padding: 20px 0;
            }

            .feature-box {
                margin-top: 28px;
                gap: 15px;
            }

            .feature-icon {
                width: 55px;
                height: 55px;
            }

            .feature-icon i {
                font-size: 38px;
            }

            .feature-text h4 {
                font-size: 17px;
            }

            .values-section {
                padding: 45px 18px;
            }

            .value-card {
                margin-bottom: 20px;
                padding: 32px 22px;
            }

            .value-icon-wrapper {
                width: 80px;
                height: 80px;
            }

            .value-icon-wrapper i {
                font-size: 40px;
            }

            .value-card h3 {
                font-size: 20px;
            }

            .testimonials-section {
                padding: 45px 18px;
            }

            .testimonial-card {
                margin-bottom: 20px;
                padding: 28px;
                min-height: auto;
            }

            .testimonial-text {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .testimonial-rating {
                font-size: 16px;
            }

            .testimonial-avatar {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .testimonial-info h4 {
                font-size: 15px;
            }

            .testimonial-info p {
                font-size: 12px;
            }

            .features-bottom {
                padding: 40px 18px;
            }

            .feature-bottom-box {
                margin-bottom: 18px;
            }

            .footer {
                padding: 45px 18px 22px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2 {
                margin-bottom: 28px;
            }
        }

        /* Mobile Small (320px - 399px) */
        @media (max-width: 399px) {
            .top-banner {
                font-size: 9px;
                padding: 8px 10px;
            }

            .top-banner .support-text {
                display: none;
            }

            .top-banner .promo-text {
                font-size: 8px;
                padding: 0 2px;
            }

            .top-banner .close-btn {
                font-size: 18px;
                padding: 0 5px;
            }

            .navbar {
                padding: 10px 0;
            }

            .navbar-brand {
                font-size: 15px;
            }

            .logo-circle {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }

            .navbar-nav .nav-link {
                padding: 10px 15px;
                font-size: 15px;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .nav-icons {
                gap: 15px;
                font-size: 17px;
                justify-content: center;
            }

            .hero-section {
                padding: 35px 15px;
            }

            .hero-section h1 {
                font-size: 26px;
            }

            .breadcrumb-item {
                font-size: 13px;
            }

            .story-section {
                padding: 35px 15px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            .section-description {
                font-size: 13px;
            }

            .signature {
                font-size: 26px;
            }

            .signature-role {
                font-size: 13px;
            }

            .grid-large {
                height: 200px;
                margin-bottom: 12px;
            }

            .grid-small {
                height: 160px;
                margin-bottom: 12px;
            }

            .stats-bar {
                padding: 25px 12px;
            }

            .stat-item {
                margin-bottom: 15px;
                padding: 8px;
            }

            .stat-number {
                font-size: 26px;
            }

            .stat-label {
                font-size: 13px;
            }

            .quality-section {
                padding: 35px 15px;
            }

            .quality-content {
                padding: 18px 0;
            }

            .feature-box {
                flex-direction: column;
                text-align: center;
                align-items: center;
                margin-top: 25px;
                gap: 12px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
            }

            .feature-icon i {
                font-size: 35px;
            }

            .feature-text h4 {
                font-size: 16px;
            }

            .feature-text p {
                font-size: 13px;
            }

            .values-section {
                padding: 35px 15px;
            }

            .value-card {
                margin-bottom: 18px;
                padding: 28px 18px;
            }

            .value-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .value-icon-wrapper i {
                font-size: 35px;
            }

            .value-card h3 {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .value-card p {
                font-size: 13px;
            }

            .testimonials-section {
                padding: 35px 15px;
            }

            .testimonials-section::before {
                font-size: 120px;
            }

            .testimonial-card {
                margin-bottom: 18px;
                padding: 25px;
                min-height: auto;
            }

            .testimonial-rating {
                font-size: 16px;
            }

            .testimonial-text {
                font-size: 14px;
                margin-bottom: 20px;
                line-height: 1.7;
            }

            .testimonial-avatar {
                width: 42px;
                height: 42px;
                font-size: 17px;
            }

            .testimonial-info h4 {
                font-size: 14px;
            }

            .testimonial-info p {
                font-size: 12px;
            }

            .testimonial-author {
                gap: 12px;
            }

            .features-bottom {
                padding: 30px 15px;
            }

            .feature-bottom-box {
                flex-direction: column;
                text-align: center;
                align-items: center;
                margin-bottom: 15px;
                padding: 12px;
            }

            .feature-bottom-icon {
                width: 50px;
                height: 50px;
            }

            .feature-bottom-icon i {
                font-size: 36px;
            }

            .feature-bottom-content h4 {
                font-size: 16px;
            }

            .feature-bottom-content p {
                font-size: 13px;
            }

            .footer {
                padding: 35px 15px 18px;
            }

            .footer h5 {
                font-size: 16px;
                margin-bottom: 18px;
            }

            .footer p {
                font-size: 13px;
            }

            .footer ul li {
                margin-bottom: 10px;
            }

            .footer ul li a {
                font-size: 13px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2,
            .footer .col-md-6 {
                margin-bottom: 25px;
            }

            .footer-brand {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .footer-brand strong {
                font-size: 17px !important;
            }

            .footer-social {
                gap: 12px;
            }

            .footer-social i {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .footer-bottom {
                padding-top: 20px;
                text-align: center;
            }

            .footer-bottom p {
                font-size: 12px;
            }

            .footer-selects {
                justify-content: center;
                gap: 10px;
            }

            .footer-selects select {
                padding: 6px 12px;
                font-size: 12px;
            }
        }