/* Home page (Views/Home/Index.cshtml) */

/* ── TFH: hero search ── */
.tfh-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 48px 48px 40px;
    font-family: 'Poppins', sans-serif;
}

/* Background image */
.tfh-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: background-image 0.8s ease-in-out;
}

/* Overlay: left fade to white/cream */
.tfh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(245,240,235,1) 0%, rgba(245,240,235,0.8) 30%, rgba(245,240,235,0.2) 60%, rgba(245,240,235,0.1) 100%);
    z-index: 1;
}

.tfh-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.tfh-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

    .tfh-badge i {
        color: #E8A020;
    }

.tfh-hero h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.tfh-highlight {
    color: #E8A020;
    display: block;
    font-size: 28px;
}

.tfh-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    margin-bottom: 10px;
    max-width: 400px;
}

/* ── Single-row Search Box ── */
.tfh-search-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    padding: 0 20px 0 0;
    display: flex;
    align-items: stretch;
    max-width: 690px;
    min-height: 72px;
}

/* Pincode field */
.tfh-pincode {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 14px 20px;
    border-right: 1px solid #efefef;
    min-width: 190px;
}

.tfh-pincode-label {
    font-size: 10px;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tfh-pincode-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tfh-pincode i {
    color: #E8A020;
    font-size: 13px;
}

.tfh-pincode input {
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    background: transparent;
    width: 100%;
}

    .tfh-pincode input::placeholder {
        color: #bbb;
        font-weight: 400;
        font-size: 12px;
    }

/* Select groups */
.tfh-select-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 14px 20px;
    border-right: 1px solid #efefef;
    cursor: pointer;
    min-width: 130px;
}

    .tfh-select-group label {
        font-size: 10px;
        color: #999;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        cursor: pointer;
        white-space: nowrap;
    }

    .tfh-select-group select {
        border: none;
        outline: none;
        background: transparent;
        font-size: 13px;
        font-weight: 600;
        color: #1a1a1a;
        cursor: pointer;
        padding: 0;
        -webkit-appearance: auto;
        appearance: auto;
    }

/* Search button */
.tfh-search-btn {
    background: #E8A020;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    margin: 10px 0 10px 16px;
    flex-shrink: 0;
    transition: background 0.2s;
}

    .tfh-search-btn:hover {
        background: #c8851a;
    }

/* Popular tags */
.tfh-popular-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.tfh-tags-label {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.tfh-tag {
    background: rgba(255,255,255,0.85);
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: border-color 0.2s, color 0.2s;
}

    .tfh-tag a {
        color: #555;
    }

    .tfh-tag:hover {
        border-color: #E8A020;
        color: #E8A020;
    }

.tfh-tags-scroll {
    overflow: hidden;
    position: relative;
    flex: 1;
}

.tfh-tags-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation-delay: 2s;
}

/* Remove scrollbar everywhere */
.tfh-tags-scroll::-webkit-scrollbar {
    display: none;
}

.tfh-tags-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes scrollTags {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .tfh-hero {
        padding: 10px 14px;
    }

        .tfh-hero h1 {
            font-size: 38px;
        }

    .tfh-search-box {
        flex-wrap: wrap;
        padding: 10px;
        gap: 10px;
        height: auto;
    }

    .tfh-pincode,
    .tfh-select-group {
        flex: 1 1 calc(50% - 10px);
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .tfh-search-btn {
        width: 100%;
        justify-content: center;
        margin: 10px 0 0;
        height: 48px;
    }
}

@media (max-width: 768px) {

    .tfh-search-box {
        padding: 8px;
        border-radius: 12px;
        gap: 4px;
    }

    .tfh-pincode,
    .tfh-select-group {
        padding: 8px 10px;
        gap: 2px;
    }

        /* Reduce label size */
        .tfh-pincode-label,
        .tfh-select-group label {
            font-size: 9px;
        }

        /* Reduce input/select text */
        .tfh-pincode input,
        .tfh-select-group select {
            font-size: 12px;
        }

    /* Reduce height */
    .tfh-search-box > div {
        min-height: auto;
    }

    /* Button smaller */
    .tfh-search-btn {
        height: 25px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Reduce spacing between fields */
    .tfh-search-box > * {
        margin-bottom: 4px;
    }

    /* Optional: slightly transparent (less heavy look) */
    .tfh-search-box {
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }

    .tfh-tags-track {
        animation: scrollTags 20s linear infinite;
    }
}

@media (max-width: 480px) {
    .tfh-hero h1 {
        font-size: 24px;
    }

    .tfh-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .tfh-search-box {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .tfh-search-box {
        position: sticky;
        bottom: 10px;
        z-index: 5;
    }
}

@media (max-width: 426px) {
    .tfh-highlight {
        font-size: 19px;
    }
}

@media (max-width: 375px) {
    .tfh-highlight {
        font-size: 17px;
    }
}

/* ===== TILES NEAR YOU / HOW IT WORKS base ===== */
.tny-section, .hiw-section {
    font-family: 'Poppins', sans-serif;
}

/* ===== TILES NEAR YOU ===== */
.tny-section {
    padding: 36px 40px;
}

.tny-card {
    margin: auto;
    background: #f7f4f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
}

/* Left */
.tny-info {
    width: 240px;
}

.tny-info-title {
    font-size: 20px;
    font-weight: 800;
}

.tny-info-location {
    color: #E8A020;
    font-weight: 700;
    margin: 6px 0 10px;
}

.tny-info-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

.tny-info-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
}

/* Dealers */
.tny-dealers {
    display: flex;
    gap: 12px;
    flex: 1;
}

.tny-dealer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.tny-dealer-img {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.tny-dealer-info {
    padding: 10px;
}

.tny-dealer-name {
    font-size: 13px;
    font-weight: 600;
}

.tny-rating-score {
    color: #E8A020;
    font-size: 12px;
}

/* View All */
.tny-view-all-card {
    width: 90px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 10px;
}

.tny-view-all-btn {
    background: #E8A020;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dummy images */
.tny-ph-1 {
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=400');
}

.tny-ph-2 {
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=400');
}

.tny-ph-3 {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=400');
}
/* Address */
.tny-dealer-address {
    font-size: 11px;
    color: #777;
    margin-top: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Phone */
.tny-dealer-phone {
    display: inline-block;
    font-size: 11px;
    color: #1a1a1a;
    margin-top: 4px;
    text-decoration: none;
    font-weight: 600;
}

    .tny-dealer-phone:hover {
        color: #E8A020;
    }

.tny-ph-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: tny-shimmer 1.4s infinite;
}

.tny-skel-line {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: tny-shimmer 1.4s infinite;
}

.tny-skel-title {
    width: 75%;
    height: 14px;
}

.tny-skel-short {
    width: 40%;
}

.tny-skel-long {
    width: 90%;
}

@keyframes tny-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.tny-dealer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.tny-location-spinner {
    color: #888;
    font-size: 13px;
}

/* ===== HOW IT WORKS ===== */
.hiw-section {
    padding: 40px;
}

.hiw-header {
    text-align: center;
    margin-bottom: 30px;
}

.hiw-title {
    font-size: 22px;
    font-weight: 800;
}

.hiw-sub {
    font-size: 13px;
    color: #777;
}

.hiw-steps {
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hiw-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hiw-step-circle {
    width: 60px;
    height: 60px;
    background: #f5f0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-step-title {
    font-weight: 600;
}

.hiw-step-desc {
    font-size: 12px;
    color: #888;
}

.hiw-arrow {
    font-size: 20px;
    color: #ccc;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {

    .tny-card {
        flex-direction: column;
    }

    .tny-info {
        width: 100%;
    }

    .tny-dealers {
        overflow-x: auto;
    }

    .tny-dealer-card {
        flex: 0 0 45%;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .tny-section, .hiw-section {
        padding: 20px 16px;
    }

    .tny-dealers {
        overflow-x: auto;
    }

    .tny-dealer-card {
        flex: 0 0 73%;
    }

    .tny-dealers::-webkit-scrollbar {
        display: none;
    }

    .hiw-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .hiw-arrow {
        display: none;
    }
}

/* ===== city list titles (city-card/city-img/city-name and cities-section itself are
   shared with DynamicCityWisePage/Index and stay in the global stylesheet) ===== */
.cities-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cities-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 12px;
    scrollbar-width: none;
}

    .cities-row::-webkit-scrollbar {
        display: none;
    }

/* ===== "list your business" CTA ===== */
.cta-section {
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}

/* Main */
.cta-container {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #f5efe7, #efe6da);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Left */
.cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.cta-icon {
    width: 180px;
    height: 40px;
    flex-shrink: 0;
}

    .cta-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.cta-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 6px;
}

.cta-text p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Right */
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Card */
.cta-card {
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 185px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: 0.2s ease;
    cursor: pointer;
}

    .cta-card:hover {
        transform: translateY(-2px);
    }

.cta-card-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.cta-small {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
}

.cta-main {
    font-size: 13px;
    font-weight: 600;
    color: #E8A020;
    line-height: 1.3;
}

@media (max-width: 900px) {

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cta-card {
        min-width: 170px;
    }
}

@media (max-width: 480px) {

    .cta-section {
        padding: 20px 14px;
    }

    .cta-container {
        padding: 18px;
        gap: 18px;
    }

    .cta-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cta-icon {
        width: 140px;
        height: 34px;
    }

    .cta-text h3 {
        font-size: 15px;
    }

    .cta-text p {
        font-size: 12px;
    }

    /* 2x2 GRID */
    .cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .cta-card {
        min-width: unset;
        width: 100%;
        padding: 7px;
        gap: 10px;
    }

    .cta-card-icon {
        font-size: 18px;
    }

    .cta-main {
        font-size: 12px;
    }
}

/* =========================
   WALL & FLOOR SECTION
========================= */
.wf-section {
    padding: 10px 40px 40px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* Card */
.wf-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 30px;
    background: #f7f4f0;
}

/* Different backgrounds */
.wf-wall {
    background: linear-gradient(135deg, #f7f4f0, #efe5da);
}

.wf-floor {
    background: linear-gradient(135deg, #f1f3f5, #e4e7ea);
}

/* Left content */
.wf-content {
    position: relative;
    z-index: 2;
    width: 52%;
}

.wf-badge {
    display: inline-block;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 14px;
}

.wf-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.wf-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.wf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s ease;
}

    .wf-btn:hover {
        transform: translateY(-2px);
    }

/* Right image */
.wf-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 100%;
}

    .wf-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 900px) {

    .wf-section {
        padding: 10px 20px 30px;
    }

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

    .wf-card {
        min-height: 260px;
    }

    .wf-title {
        font-size: 24px;
    }

    .wf-content {
        width: 55%;
    }
}

@media (max-width: 480px) {

    .wf-section {
        padding: 10px 16px 26px;
    }

    .wf-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        min-height: auto;
    }

    .wf-content {
        width: 100%;
    }

    .wf-title {
        font-size: 20px;
    }

    .wf-desc {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .wf-btn {
        font-size: 12px;
        padding: 10px 14px;
    }

    .wf-image {
        position: relative;
        width: 100%;
        height: 180px;
        margin-top: 18px;
        border-radius: 14px;
        overflow: hidden;
    }
}

/* =========================
   BLOG SECTION (home page's own preview grid — separate from the
   Blog listing page's tf-blog-hero/tfbc-* in pages/blog.css)
========================= */
.tf-blog-section {
    padding: 50px;
    background: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.tf-blog-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.tf-blog-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.tf-blog-subtitle {
    font-size: 14px;
    color: #666;
}

.tf-blog-viewall {
    text-decoration: none;
    color: #E8A020;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Grid */
.tf-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Card */
.tf-blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.25s ease;
    border: 1px solid #ececec;
}

    .tf-blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

/* Image */
.tf-blog-image {
    height: 220px;
    overflow: hidden;
}

    .tf-blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.3s ease;
    }

.tf-blog-card:hover .tf-blog-image img {
    transform: scale(1.05);
}

/* Content */
.tf-blog-content {
    padding: 18px;
}

.tf-blog-tag {
    display: inline-block;
    background: #fff5e7;
    color: #E8A020;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.tf-blog-card-title {
    font-size: 17px;
    line-height: 1.45;
    color: #222;
    font-weight: 700;
    margin-bottom: 10px;
}

.tf-blog-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

/* Footer */
.tf-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

    .tf-blog-footer span {
        color: #888;
    }

    .tf-blog-footer a {
        text-decoration: none;
        color: #E8A020;
        font-weight: 600;
    }

@media (max-width: 1024px) {

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

@media (max-width: 768px) {

    .tf-blog-section {
        padding: 40px 16px;
    }

    .tf-blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tf-blog-title {
        font-size: 22px;
    }

    .tf-blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tf-blog-image {
        height: 200px;
    }

    .tf-blog-card-title {
        font-size: 16px;
    }
}

/* home page faq section */
.main-home-faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 20px 46px;
}

.main-home-faq-badge {
    font-weight: 700;
    font-style: Bold;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    background-color: #ECF0FC;
    color: #0d34a8;
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.main-home-faq-title {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 52px;
    letter-spacing: 0%;
    color: #1B1C1E;
    margin-bottom: 30px;
    text-align: center;
}

.main-home-accordion-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.main-home-accordion-button {
    background-color: #ffffff;
    border: none;
    color: #1f2937;
    padding: 20px 28px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
}

    .main-home-accordion-button:not(.collapsed) {
        background-color: #ffffff;
        color: #4169E1;
    }

    .main-home-accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        width: 1.25rem;
        height: 1.25rem;
        transition: transform 0.2s ease-in-out;
    }

    .main-home-accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%232563eb' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(180deg);
    }

    .main-home-accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        border-color: #4169E1;
    }

    .main-home-accordion-button:hover {
        background-color: #f8fafc;
    }

.main-home-accordion-body {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0%;
    padding: 24px 28px 24px 28px;
    color: #6b7280;
}

.main-home-accordion-collapse {
    border-top: 1px solid #f3f4f6;
}

.main-home-first-item .main-home-accordion-button {
    font-weight: 700;
    font-style: Bold;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
}

@media (max-width: 768px) {
    .main-home-faq-container {
        padding: 40px 15px;
    }

    .main-home-faq-title {
        font-size: 2rem;
    }

    .main-home-accordion-button {
        font-size: 1rem;
        padding: 20px;
    }

    .main-home-accordion-body {
        padding: 0 20px 20px;
    }
}

@media (max-width: 576px) {
    .main-home-faq-title {
        font-size: 1.75rem;
    }

    .main-home-accordion-button {
        padding: 18px 16px;
        font-size: 0.95rem;
    }

    .main-home-accordion-body {
        padding: 0 16px 18px;
        font-size: 0.9rem;
    }
}
