
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root{
            --primary-blue: #4584ff;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f5f5;
            color: #333;
        }

        /* Header */
        .header {
            background: #fff;
            padding: 12px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 15px;
            color: #000;
            text-decoration: none;
        }

        .logo i {
            font-size: 18px;
            color: #000;
        }

        .nav-menu {
            display: flex;
            gap: 80px;
            align-items: center;
            list-style: none;
            margin: 0;
        }

        .nav-menu a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding-bottom: 2px;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }

        .nav-menu a.active {
            border-bottom: 2px solid #000;
            padding-left: 35px;
            padding-right: 35px;
        }

        .header-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-signup {
            background: #4285f4;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-login {
            background: #fff;
            color: #4285f4;
            border: 1px solid #e0e0e0;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background: #000;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
        }


        /* .hero-section {
            position: relative;
            background: url('../images/bg-img.png') center center/cover no-repeat;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: start;
            text-align: start;
            color: #fff;
        } */

        /* .sinput {
            width: 1259px !important;
            height: 153px;
            gap: 12px;
            angle: 0deg;
            opacity: 1;
            top: 656px;
            left: 90px;
            border-radius: 12px;
        } */

        .sinput {
            width: 100%;
            border-radius: 12px;
        }


        .hero-content {
            padding-left: 8em;
            padding-right: 8em;
        }

        .hero-label {
            color: #4285f4;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 16px;
            max-width: 450px;
        }

        .hero-description {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 28px;
            max-width: 500px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Search Tabs */
        .search-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .search-tab {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .search-tab.active {
            background: #4285f4;
        }

        .search-tab i {
            font-size: 14px;
        }

        /* Search Box */
        .search-container {
            /* background: rgba(255, 255, 255, 0.95); */
            border-radius: 12px;
            /* padding: 12px; */
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-content,
        .sinput,
        .search-container,
        .search-input {
            width: 100% !important;
            max-width: unset !important;
        }



        .search-container i {
            color: #666;
            font-size: 16px;
            margin-left: 6px;
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 14px;
            padding: 10px;
            background: transparent;
            width: 100%;
        }

        .btn-search {
            background: #4285f4;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
        }

        /* Cards Section */
        .cards-section {
            padding: 50px 0;
        }

        .complaint-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .complaint-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .card-header-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid #f0f0f0;
        }

        .card-date {
            font-size: 14px;
            color: #666;
            font-weight: 600;
        }

        .card-status-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-badge {
            background: #4285f4;
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .card-menu {
            color: #ccc;
            font-size: 20px;
            cursor: pointer;
        }

        .card-body-custom {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title-custom {
            color: #4285f4;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
            background: #f5f5f5;
        }

        .btn-view {
            width: 100%;
            background: #fff;
            color: #4285f4;
            border: 1px solid #e0e0e0;
            padding: 10px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: auto;
        }

        .btn-view:hover {
            background: #4285f4;
            color: #fff;
            border-color: #4285f4;
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .page-item-custom {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background: #fff;
            color: #666;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .page-item-custom:hover {
            border-color: #4285f4;
            color: #4285f4;
        }

        .page-item-custom.active {
            background: #4285f4;
            color: #fff;
            border-color: #4285f4;
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(90deg, #4285f4 0%, #3367d6 100%);
            border-radius: 16px;
            padding: 32px;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .newsletter-title {
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin-bottom: 0;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            border: none;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 14px;
            outline: none;
        }

        .btn-subscribe {
            background: #fff;
            color: #4285f4;
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            white-space: nowrap;
        }

        /* Footer */
        .footer {
            /* background: #fff; */
            /* padding: 40px 0 20px; */
            /* padding-left: 40px;
            padding-right: 40px; */
            padding-bottom: 0px;
            padding-top: 20px;
            margin-bottom: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .footer-logo {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            background: #4285f4;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
        }

        .footer-brand {
            font-weight: 900;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .footer-description {
            color: #888;
            font-size: 13px;
            line-height: 1.6;
            max-width: 400px;
        }

        .footer-social {
            background: #e8f0fe;
            color: #4285f4;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-bottom {
            background: #fff;
            text-align: center;
            color: #999;
            font-size: 13px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-section {
                height: 400px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-section {
                height: 380px;
            }

            .search-container {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-search {
                width: 100%;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .card-image {
                height: 180px;
            }

            .header-actions {
                gap: 6px;
            }

            .btn-signup,
            .btn-login {
                padding: 6px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 575px) {
            .search-tabs {
                gap: 6px;
            }

            .search-tab {
                padding: 8px 12px;
                font-size: 12px;
            }

            .newsletter-section {
                padding: 24px 20px;
            }
        }

        .px-5em {
            padding-left: 8em;
            padding-right: 8em;
        }




        /* ========== HERO SECTION BASE STYLES ========== */
.hero-section {
    position: relative;
    background: url('../images/Backdrop.png') center center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

/* Background Blur Layer */
/* .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.webp') center/cover no-repeat;
    filter: blur(17px);
    transform: scale(1.05);
    z-index: -1;
    -webkit-filter: blur(17px);
} */

.hero-content {
    padding-left: 8em;
    padding-right: 8em;
    width: 100%;
    max-width: 1200px;
}

.hero-label {
    color: #4285f4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

/* Blur box around search input */
.blur-box {
    background: rgba(244, 244, 245, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 2rem;
    /* margin-top: 1.5rem; */
}

/* Input group */
.input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.input-group-text {
    background-color: transparent;
    border-right: none;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 15px;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.btn.btn-primary {
    background-color: #4584FF;
    border: none;
    font-weight: 600;
    padding: 14px 24px;
    transition: 0.3s;
}

.btn.btn-primary:hover {
    background-color: #3367d6;
}

/* Custom tab buttons */
.custom-btn {
    padding: 0.7rem 2rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid transparent;
    transition: 0.3s;
    color: white !important;
    font-weight: 600;
    font-size: 14px;
}

.btn-check:checked + .custom-btn {
    background-color: #4584FF;
    color: #fff;
    border: unset !important;
}

/* ========== RESPONSIVENESS ========== */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding: 60px 0;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 3em;
    }

    .hero-title {
        font-size: 48px;
        margin: 0 auto 16px;
        max-width: 100%;
    }

    .hero-description {
        font-size: 14px;
        margin: 0 auto 24px;
        max-width: 100%;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .custom-btn {
        width: 100%;
        border-radius: 10px;
    }

    .blur-box {
        padding: 1.5rem;
        width: 100%;
    }

    .input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .input-group-text {
        border-right: none;
        border-bottom: 1px solid #eee;
        justify-content: flex-start;
        padding: 10px 14px;
    }

    .search-input {
        width: 100%;
        font-size: 14px;
        padding: 12px 14px;
    }

    .btn.btn-primary {
        width: 100%;
        border-radius: 10px;
        margin-top: 10px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5em;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 13px;
    }

    .custom-btn {
        font-size: 13px;
        padding: 0.6rem 1rem;
    }
}

/* Extra Small Devices (≤ 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 12px;
    }

    .blur-box {
        padding: 1rem;
    }

    .input-group-text i {
        font-size: 14px;
    }

    .btn.btn-primary {
        font-size: 13px;
        padding: 10px 16px;
    }
}


/* ------------------ HEADER RESPONSIVENESS ------------------ */

/* Base header styles (optional improvements) */
.header {
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

/* Hide the menu toggle by default (desktop only) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

/* Make sure nav menu is inline for large screens */
.nav-menu {
    display: flex;
    gap: 70px;
    align-items: center;
}

/* ------------------ TABLET & MOBILE ------------------ */
@media (max-width: 992px) {

    .px-5em {
        padding-left: 2em;
        padding-right: 2em;
    }

    /* Show menu toggle (hamburger icon) */
    .menu-toggle {
        display: block;
    }

    /* Hide nav menu by default */
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-top: 1px solid #eee;
        display: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* When menu is active */
    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        border-bottom: 1px solid #f2f2f2;
        font-size: 15px;
    }

    .header-actions {
        display: none; /* hide on mobile (optional) */
    }

    .logo img {
        max-width: 140px;
        height: auto;
    }
}

/* ------------------ SMALL MOBILE ------------------ */
@media (max-width: 575px) {
    .px-5em {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .logo img {
        max-width: 120px;
    }

    .fs-83{
        font-size: 60px !important;
    }

    .menu-toggle {
        font-size: 22px;
    }
}



/* Detail page CSS */


        .search-box {
            position: relative;
        }

        .search-box input {
            width: 220px;
            padding: 8px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background: #f3f4f6;
            font-size: 14px;
        }


        /* Main */
        .main-wrapper {
            max-width: 1345px;
            margin: 0 auto;
            padding: 20px 80px;
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            font-size: 15.4px;
            margin-bottom: 17px;
        }

        .breadcrumb-nav a {
            color: #000;
            text-decoration: none;
        }

        .breadcrumb-nav .sep {
            color: rgba(0, 0, 0, 0.3);
            /* margin: 0 6px; */
        }

        .breadcrumb-nav .current {
            color: rgba(0, 0, 0, 0.5);
        }

        /* Article Header */
        .post-header {
            margin-bottom: 34px;
        }

        .category-badge {
            background: var(--primary-blue);
            color: #fff;
            padding: 8px 17px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 23px;
        }

        .post-title {
            font-size: 40px;
            font-weight: 500;
            color: var(--text-dark);
            line-height: 1.43;
            margin-bottom: 15px;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .author-box {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .author-name {
            font-family: 'Work Sans', sans-serif;
            font-size: 20px;
            font-weight: 500;
            color: var(--text-gray);
        }

        .post-date {
            font-size: 20px;
            color: var(--text-gray);
        }

        /* Complaint Section */
        .complaint-section {
            background: #fff;
            border: 1px solid rgba(128, 128, 128, 0.5);
            border-radius: 8px;
            padding: 20px;
        }

        .complaint-content {
            display: flex;
            gap: 18px;
        }

        .complaint-left {
            flex: 1;
            display: flex;
            gap: 14px;
        }

        .evidence-img {
            flex: 1;
        }

        .evidence-img img {
            width: 100%;
            height: auto;
            border-radius: 6px;
        }

        .evidence-img-bg {
            flex: 1;
            /* background: url('https://c.animaapp.com/mgo2kfss2gHhVe/img/image.png') center/cover; */
            border-radius: 6px;
            min-height: 300px;
        }

        .complaint-right {
            width: 612px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .info-text {
            font-size: 13.2px;
            font-weight: 500;
            color: #202020;
        }

        .info-title {
            font-size: 19.8px;
            font-weight: 500;
            color: #202020;
            margin: 25px 0 16px;
        }

        .train-info-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .train-label {
            font-size: 15.4px;
            font-weight: 500;
            color: var(--text-medium);
        }

        .route-section {
            position: relative;
            padding: 17px 0;
            margin-bottom: 17px;
        }

        .route-line {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 357px;
            height: 4px;
            background: #e0e0e0;
        }

        .route-row {
            position: relative;
            display: flex;
            justify-content: space-between;
        }

        .type-badge {
            background: var(--primary-blue);
            color: #fff;
            padding: 4px 18px;
            border-radius: 100px;
            font-size: 16.2px;
            font-weight: 500;
            display: inline-block;
        }

        .desc-section {
            margin-top: 16px;
        }

        .desc-heading {
            font-size: 15.4px;
            font-weight: 500;
            color: #000;
            margin-bottom: 8px;
        }

        .desc-text {
            font-size: 15.4px;
            font-weight: 500;
            color: var(--text-medium);
            line-height: 1.57;
        }



        /* More Section */
        .more-section {
            margin-top: 34px;
        }

        .section-title {
            font-size: 20.6px;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 24px;
        }

        .more-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 37px;
        }

        .more-item {
            position: relative;
        }

        .more-item img {
            width: 100%;
            height: 142px;
            border-radius: 6px;
        }

        .more-item h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 18.9px;
            font-weight: 700;
            color: rgba(0, 0, 0, 0.8);
            margin-top: 10px;
        }

        /* Comments */
        .comments-box {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 12px;
            padding: 20px;
            margin-top: 42px;
        }

        .comments-title {
            font-size: 22px;
            color: #000;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
            margin-bottom: 30px;
        }

        .comment {
            margin-bottom: 24px;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .comment-author {
            font-size: 18px;
            font-weight: 500;
            color: #000;
        }

        .comment-time {
            font-size: 16px;
            color: #b4bbc6;
        }

        .comment-body {
            font-size: 20px;
            color: #272727;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .comment-footer {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .comment-btn {
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 16px;
            font-weight: 700;
            color: #8991a0;
            cursor: pointer;
        }

        .comment-btn img {
            width: 24px;
            height: 24px;
        }

        .reply-indent {
            margin-left: 50px;
        }

        /* Comment Form */
        .comment-form-box {
            background: #fff;
            border: 1.5px solid rgba(180, 187, 198, 0.5);
            border-radius: 7px;
            padding: 18px;
            margin-top: 24px;
        }

        .comment-textarea {
            width: 100%;
            border: none;
            outline: none;
            font-size: 22px;
            color: #000;
            margin-bottom: 12px;
            resize: none;
        }

        .comment-textarea::placeholder {
            color: #9e9ea8;
        }

        .comment-tools {
            display: flex;
            align-items: center;
            gap: 40px;
            background: #f8f8f8;
            padding: 10px 18px;
            border-radius: 5px;
        }

        .tool-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 22px;
            color: #5e5e5e;
        }

        .tool-btn img {
            width: 20px;
            height: 20px;
        }

        .btn-send-comment {
            background: #bdbdbd;
            color: #fff;
            border: none;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            margin-left: auto;
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(90deg, var(--primary-blue) 0%, #3367d6 100%);
            border-radius: 20px;
            padding: 27px 28px;
            margin: 50px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .newsletter-left h2 {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .newsletter-left p {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #fff;
            margin: 0;
        }

        .newsletter-form {
            display: flex;
            gap: 11px;
        }

        .newsletter-email {
            width: 273px;
            padding: 12px 16px;
            border: 1px solid #dfdfdf;
            border-radius: 10px;
            background: transparent;
            color: #fff;
            font-size: 14px;
        }

        .newsletter-email::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .btn-newsletter {
            background: #fff;
            color: var(--primary-blue);
            border: none;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            min-width: 133px;
        }

        /* Footer */
        /* .footer {
            background: #fff;
            padding: 40px 0 20px;
        } */

        .footer-content {
            max-width: 1224px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-brand img {
            width: 60px;
            height: 38px;
        }

        .footer-brand-text {
            font-size: 22px;
            font-weight: 500;
            color: #000;
        }

        .footer-desc {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #737373;
            line-height: 1.6;
            max-width: 312px;
            margin-bottom: 20px;
        }

        .footer-social img {
            width: 104px;
            height: 24px;
        }

        .footer-copyright {
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #737373;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #e5e7eb;
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .header-container {
                padding: 0 5%;
            }

            .main-wrapper {
                padding: 20px 5%;
            }
        }

        @media (max-width: 1200px) {
            .complaint-content {
                flex-direction: column;
            }

            .complaint-right {
                width: 100%;
            }

            .more-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {

            .complaint-left {
                flex-direction: column;
            }

            .evidence-img-bg {
                min-height: 250px;
            }
        }

        @media (max-width: 768px) {
            .search-box input {
                width: 150px;
            }

            .main-wrapper {
                padding: 20px 3%;
            }

            .post-title {
                font-size: 28px;
            }

            .post-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .info-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .train-info-row {
                flex-direction: column;
                gap: 8px;
            }

            .route-line {
                width: 100%;
            }

            .action-btns {
                flex-direction: column;
            }

            .more-grid {
                grid-template-columns: 1fr;
            }

            .comment-body {
                font-size: 16px;
            }

            .reply-indent {
                margin-left: 20px;
            }

            .newsletter {
                flex-direction: column;
                gap: 20px;
            }

            .newsletter-form {
                flex-direction: column;
                width: 100%;
            }

            .newsletter-email {
                width: 100%;
            }
        }

        @media (max-width: 576px) {

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

            .search-box input {
                width: 120px;
                font-size: 12px;
                padding: 6px 12px;
            }

            .post-title {
                font-size: 22px;
            }

            .author-name,
            .post-date {
                font-size: 16px;
            }

            .comment-tools {
                gap: 20px;
                overflow-x: auto;
            }
        }


        .card-menu {
            font-size: 22px;
            color: #333;
            border: none;
            background: transparent;
            line-height: 1;
            cursor: pointer;
        }

        .dropdown-menu {
            border-radius: 8px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            font-size: 14px;
        }

        .dropdown-item {
            padding: 8px 16px;
        }

        .dropdown-item:hover {
            background-color: #f4f6fa;
        }

