body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

a {
    transition: all 0.3s ease;
}

.custom-navbar {
    background: linear-gradient(90deg, #0f172a, #1d4ed8);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.site-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
}

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 60%, #2563eb 100%);
    color: #fff;
    padding: 90px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.hero-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 22px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-list li {
    margin-bottom: 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-list i {
    color: #facc15;
}

.section-space {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 45px;
}

.section-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.category-card {
    display: block;
    background: #fff;
    border-radius: 22px;
    padding: 30px 25px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(29, 78, 216, 0.15);
}

.category-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.category-card h5 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
}

.category-card p {
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.7;
}

.category-link {
    color: #1d4ed8;
    font-weight: 700;
    font-size: 14px;
}

.theme-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(29, 78, 216, 0.12);
}

.theme-img-wrap {
    position: relative;
}

.theme-img {
    width: 100%;
    height: 220px;
    /*object-fit: cover;*/
}

.theme-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #1d4ed8;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 50px;
}

.badge-trending {
    background: #ea580c;
}

.badge-new {
    background: #16a34a;
}

.theme-card-body {
    padding: 22px;
}

.theme-card-body h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.theme-card-body p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    min-height: 76px;
}

.theme-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    padding: 80px 0;
}

.cta-box {
    color: #fff;
    max-width: 900px;
    margin: auto;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: #dbeafe;
    line-height: 1.7;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 25px;
}

.footer-title,
.footer-subtitle {
    color: #fff;
    font-weight: 700;
}

.footer-text {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-line {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0 20px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-space {
        padding: 60px 0;
    }

    .theme-img {
        height: 190px;
    }
}
.inner-page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 60%, #2563eb 100%);
    color: #fff;
    padding: 70px 0 50px;
}

.inner-page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
}

.inner-page-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.8;
}

.stats-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.stats-box {
    min-width: 180px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stats-box h4 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #fff;
}

.stats-box p {
    margin: 0;
    color: #dbeafe;
    font-size: 14px;
}

.breadcrumb-section {
    background: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.custom-breadcrumb a {
    text-decoration: none;
    color: #1d4ed8;
    font-weight: 600;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #64748b;
    font-weight: 600;
}

.category-list-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.category-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.13);
}

.category-list-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.category-list-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.theme-count-badge {
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.category-list-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.category-list-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    min-height: 82px;
    margin-bottom: 22px;
}

.category-list-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .inner-page-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .inner-page-hero {
        padding: 60px 0 40px;
    }

    .inner-page-title {
        font-size: 28px;
    }

    .inner-page-subtitle {
        font-size: 15px;
    }

    .stats-box {
        width: 100%;
    }

    .category-list-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-list-desc {
        min-height: auto;
    }
}
.section-space-sm {
    padding: 45px 0;
}

.category-info-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.big-theme-count {
    display: inline-block;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.breadcrumb-actions .btn {
    border-radius: 10px;
    font-weight: 600;
}

.theme-gallery-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.theme-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.14);
}

.theme-gallery-img-wrap {
    position: relative;
    overflow: hidden;
}

.theme-gallery-img {
    width: 100%;
    height: 230px;
    /*object-fit: cover;*/
    transition: transform 0.4s ease;
}

.theme-gallery-card:hover .theme-gallery-img {
    transform: scale(1.05);
}

.theme-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.theme-gallery-card:hover .theme-gallery-overlay {
    opacity: 1;
}

.theme-gallery-body {
    padding: 22px;
}

.theme-gallery-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}

.theme-category-label {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.mini-badge {
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.trending-mini {
    background: #fff7ed;
    color: #ea580c;
}

.new-mini {
    background: #ecfdf5;
    color: #16a34a;
}

.theme-gallery-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.theme-gallery-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    min-height: 76px;
    margin-bottom: 14px;
}

.theme-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.theme-tag-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.theme-gallery-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .category-info-box {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .theme-gallery-img {
        height: 200px;
    }

    .theme-gallery-title {
        font-size: 18px;
    }

    .theme-gallery-desc {
        min-height: auto;
    }

    .big-theme-count {
        font-size: 14px;
        padding: 12px 18px;
    }
}
.preview-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 60%, #2563eb 100%);
    color: #fff;
    padding: 60px 0 40px;
}

.preview-topbar {
    background: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.sticky-preview-bar {
    position: sticky;
    top: 72px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.preview-info-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.preview-theme-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.preview-theme-desc {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 18px;
}

.preview-stats-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
}

.preview-stat-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed #cbd5e1;
    font-size: 15px;
    color: #334155;
}

.preview-stat-row:last-child {
    border-bottom: none;
}

.preview-stat-row strong {
    color: #0f172a;
    font-weight: 700;
}

.featured-mini {
    background: #fef3c7;
    color: #b45309;
}

.iframe-preview-box {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.iframe-note {
    background: #eff6ff;
    color: #1e3a8a;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #dbeafe;
}

.iframe-wrap {
    background: #0f172a;
    padding: 12px;
}

.live-demo-iframe {
    width: 100%;
    height: 900px;
    border: none;
    border-radius: 16px;
    background: #fff;
}

.quick-cta-box {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 14px 35px rgba(29, 78, 216, 0.18);
}

.quick-cta-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.quick-cta-box p {
    color: #dbeafe;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 1199px) {
    .live-demo-iframe {
        height: 800px;
    }
}

@media (max-width: 991px) {
    .sticky-preview-bar {
        top: 66px;
    }

    .preview-theme-title {
        font-size: 26px;
    }

    .live-demo-iframe {
        height: 700px;
    }

    .quick-cta-box {
        padding: 24px;
    }

    .quick-cta-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .preview-hero {
        padding: 50px 0 30px;
    }

    .preview-info-box {
        padding: 22px;
    }

    .preview-theme-title {
        font-size: 22px;
    }

    .preview-theme-desc {
        font-size: 15px;
    }

    .iframe-note {
        font-size: 13px;
        padding: 14px 16px;
    }

    .live-demo-iframe {
        height: 580px;
        border-radius: 12px;
    }

    .quick-cta-box h3 {
        font-size: 21px;
    }
}
.contact-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.contact-info-card {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 14px 35px rgba(29, 78, 216, 0.18);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-info-card p {
    color: #dbeafe;
    line-height: 1.8;
}

.contact-feature-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.contact-feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
}

.contact-feature-list i {
    color: #facc15;
}

.contact-detail-box {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 18px 18px 8px;
}

.contact-detail-box p {
    color: #fff;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .contact-form-card,
    .contact-info-card {
        padding: 22px;
    }

    .contact-info-card h3 {
        font-size: 24px;
    }
}
.search-filter-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.empty-search-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 50px 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.empty-search-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 18px;
}

.empty-search-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.empty-search-box p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-search-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 18px;
    backdrop-filter: blur(10px);
    margin-top: 28px;
}

.hero-search-box .form-control,
.hero-search-box .form-select {
    border-radius: 14px;
    min-height: 52px;
    border: none;
}

.hero-search-box .btn {
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .search-filter-box,
    .empty-search-box {
        padding: 20px;
    }

    .empty-search-box h3 {
        font-size: 22px;
    }
}
.not-found-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 70px 25px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.not-found-code {
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    color: #1d4ed8;
    margin-bottom: 20px;
}

.not-found-box h1 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.not-found-box p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .not-found-box {
        padding: 50px 20px;
    }

    .not-found-code {
        font-size: 72px;
    }

    .not-found-box h1 {
        font-size: 28px;
    }
}
.floating-whatsapp-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.floating-whatsapp-btn i {
    font-size: 22px;
    line-height: 1;
}

.floating-whatsapp-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

.lead-cta-strip {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    border-radius: 24px;
    padding: 26px;
    color: #fff;
    box-shadow: 0 14px 35px rgba(29, 78, 216, 0.16);
}

.lead-cta-strip h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.lead-cta-strip p {
    color: #dbeafe;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .floating-whatsapp-btn {
        right: 14px;
        bottom: 14px;
        padding: 13px 16px;
    }

    .floating-whatsapp-btn span {
        display: none;
    }

    .lead-cta-strip {
        padding: 22px;
    }

    .lead-cta-strip h3 {
        font-size: 22px;
    }
}
.theme-utility-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.theme-utility-btns .btn {
    border-radius: 12px;
    font-weight: 600;
}

.section-mini-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.saved-theme-heart.active {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.recent-fav-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.client-logo-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-card img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.why-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(29, 78, 216, 0.12);
}

.why-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.why-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.testimonial-stars i {
    color: #f59e0b;
    margin-right: 3px;
}

.testimonial-message {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 0;
}

.testimonial-avatar {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
}





@media (max-width:768px){
    .site-title{
        font-size:14px;
        line-height:1.2;
        white-space:normal;
        max-width:200px;
    }
}