        * {
            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: 12px;
            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;
        }

        /* 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);
            }

            .nav-icons {
                justify-content: center !important;
                width: 100%;
                margin-top: 20px;
            }
        }

        /* 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;
        }

        /* Blog Section */
        .blog-section {
            padding: 80px 0;
            background-color: white;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        /* Blog Card */
        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .blog-image {
            position: relative;
            overflow: hidden;
            padding-top: 75%;
            background-color: #f0f0f0;
        }

        .blog-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.08);
        }

        .blog-date {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: #f4b860;
            color: #1a1a1a;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            z-index: 1;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s;
        }

        .blog-card:hover .blog-title {
            color: #3d1f0f;
        }

        .blog-excerpt {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more {
            display: inline-block;
            color: #1a1a1a;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            position: relative;
            padding-bottom: 3px;
            transition: all 0.3s;
        }

        .read-more::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #f4b860;
            transform: scaleX(1);
            transition: transform 0.3s;
        }

        .read-more:hover {
            color: #3d1f0f;
        }

        .read-more:hover::after {
            transform: scaleX(0);
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .pagination {
            display: flex;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pagination li {
            display: flex;
        }

        .pagination a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 6px;
            color: #666;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .pagination a:hover,
        .pagination .active a {
            background-color: #f4b860;
            border-color: #f4b860;
            color: #1a1a1a;
        }

        /* Features Section */
        .features-section {
            padding: 60px 0;
            background-color: #f9f9f9;
            border-top: 1px solid #e5e5e5;
        }

        .feature-box {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateX(5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 42px !important;
            color: #f4b860;
        }

        .feature-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .feature-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) {
            .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;
            }

            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .blog-content {
                padding: 25px;
            }

            .blog-title {
                font-size: 19px;
            }
        }

        /* 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%;
            }

            .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 !important;
                width: 100%;
            }

            .hero-section {
                padding: 60px 20px;
            }

            .hero-section h1 {
                font-size: 40px;
            }

            .blog-section {
                padding: 60px 20px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .blog-content {
                padding: 25px;
            }

            .blog-title {
                font-size: 19px;
            }

            .blog-excerpt {
                font-size: 14px;
            }

            .features-section {
                padding: 50px 20px;
            }

            .feature-box {
                margin-bottom: 25px;
            }
        }

        /* 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;
            }

            .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 !important;
                gap: 20px;
            }

            .hero-section {
                padding: 50px 20px;
            }

            .hero-section h1 {
                font-size: 34px;
            }

            .blog-section {
                padding: 50px 20px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .blog-content {
                padding: 25px;
            }

            .blog-title {
                font-size: 18px;
            }

            .blog-excerpt {
                font-size: 14px;
            }

            .pagination a {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .features-section {
                padding: 40px 20px;
            }

            .feature-box {
                margin-bottom: 20px;
                gap: 15px;
            }

            .feature-icon {
                width: 55px;
                height: 55px;
            }

            .feature-icon i {
                font-size: 36px !important;
            }

            .feature-content h4 {
                font-size: 16px;
            }

            .feature-content p {
                font-size: 13px;
            }

            .footer {
                padding: 40px 20px 20px;
            }

            .footer h5 {
                font-size: 17px;
                margin-bottom: 20px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2,
            .footer .col-md-6 {
                margin-bottom: 30px;
            }

            .footer-bottom {
                text-align: center;
            }

            .footer-bottom .col-md-6 {
                text-align: center !important;
                margin-bottom: 15px;
            }

            .footer-selects {
                justify-content: center;
            }
        }

        /* 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 .nav-link {
                margin: 5px 0;
                padding: 12px 20px;
                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 !important;
                gap: 18px;
                font-size: 18px;
            }

            .hero-section {
                padding: 40px 15px;
            }

            .hero-section h1 {
                font-size: 30px;
            }

            .breadcrumb-item {
                font-size: 14px;
            }

            .blog-section {
                padding: 40px 15px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-content {
                padding: 20px;
            }

            .blog-title {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .blog-excerpt {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .read-more {
                font-size: 14px;
            }

            .blog-date {
                padding: 6px 14px;
                font-size: 12px;
            }

            .pagination a {
                width: 38px;
                height: 38px;
                font-size: 13px;
            }

            .pagination {
                gap: 8px;
            }

            .features-section {
                padding: 35px 15px;
            }

            .feature-box {
                gap: 12px;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
            }

            .feature-icon i {
                font-size: 32px !important;
            }

            .feature-content h4 {
                font-size: 15px;
            }

            .feature-content p {
                font-size: 12px;
            }

            .footer {
                padding: 35px 15px 15px;
            }

            .footer h5 {
                font-size: 16px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2,
            .footer .col-md-6 {
                margin-bottom: 25px;
            }
        }

        /* Mobile Small (320px - 399px) */
        @media (max-width: 399px) {
            .top-banner {
                font-size: 10px;
                padding: 7px 10px;
            }

            .top-banner .support-text {
                display: none;
            }

            .top-banner .promo-text {
                font-size: 9px;
            }

            .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 {
                justify-content: center !important;
                gap: 15px;
                font-size: 17px;
            }

            .hero-section {
                padding: 35px 12px;
            }

            .hero-section h1 {
                font-size: 26px;
            }

            .breadcrumb-item {
                font-size: 13px;
            }

            .blog-section {
                padding: 35px 12px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .blog-content {
                padding: 18px;
            }

            .blog-title {
                font-size: 17px;
                margin-bottom: 10px;
            }

            .blog-excerpt {
                font-size: 13px;
                margin-bottom: 12px;
            }

            .read-more {
                font-size: 13px;
            }

            .blog-date {
                padding: 5px 12px;
                font-size: 11px;
                bottom: 12px;
                left: 12px;
            }

            .pagination a {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .pagination {
                gap: 6px;
            }

            .features-section {
                padding: 30px 12px;
            }

            .feature-box {
                gap: 10px;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
            }

            .feature-icon i {
                font-size: 28px !important;
            }

            .feature-content h4 {
                font-size: 14px;
            }

            .feature-content p {
                font-size: 11px;
            }

            .footer {
                padding: 30px 12px 12px;
            }

            .footer h5 {
                font-size: 15px;
                margin-bottom: 18px;
            }

            .footer p {
                font-size: 13px;
            }

            .footer ul li {
                margin-bottom: 10px;
            }

            .footer ul li a {
                font-size: 13px;
            }

            .footer-bottom {
                font-size: 12px;
                padding-top: 20px;
                margin-top: 30px;
            }

            .footer-selects select {
                font-size: 12px;
                padding: 6px 12px;
            }

            .footer .col-lg-3,
            .footer .col-lg-2,
            .footer .col-md-6 {
                margin-bottom: 20px;
            }
        }

        /* Desktop Large (min 1200px) */
        @media (min-width: 1200px) {
            .container {
                max-width: 1200px;
            }

            .hero-section h1 {
                font-size: 52px;
            }
        }