  .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
        }
         .btn-hero {
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            font-size: 14px;
        }

        .badge-hero {
            border: 1px solid #ddd;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
        }

        .btn-dark-rounded {
            border-radius: 30px;
            padding: 10px 22px;
        }

        .btn-outline-dark-rounded {
            border-radius: 30px;
            padding: 10px 22px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-padding {
            padding: 100px 0;
        }

        .hero-title {
            font-weight: 800;
            line-height: 1.2;
            font-size: clamp(1.8rem, 5vw, 3rem);
        }

        /* --- Sisi Kanan: Konten Teks --- */
        .content-right {
            /* Menyesuaikan jarak atas agar sejajar dengan elemen kiri */
            padding-top: 10px;
        }

        .image-wrapper img {
            object-fit: cover;
        }

        .section-label {
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 800;
            color: #555;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .section-label::before {
            content: "◎";
            margin-right: 10px;
        }

        .headline {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .sub-headline {
            color: #777;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* Step Items */
        .step-box {
            padding: 25px;
            border-radius: 15px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .step-active {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .step-num {
            font-size: 24px;
            font-weight: 700;
            margin-right: 20px;
        }

        .step-text h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-text p {
            font-size: 14px;
            color: #888;
            margin-bottom: 0;
        }

        .btn-cta {
            background: #000;
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            border: none;
        }

        .section-location {
            padding: 80px 0;
        }

        /* --- Header Styling --- */
        .label-explore {
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 700;
            color: #555;
            letter-spacing: 1.2px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .label-explore::before {
            content: "◎";
            /* Ikon lingkaran luar */
            font-size: 14px;
        }

        .location-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #000;
        }

        .location-desc {
            color: #666;
            max-width: 700px;
            margin: 0 auto 60px auto;
            line-height: 1.6;
            font-size: 16px;
        }

        /* --- Card Styling --- */
        .location-card {
            margin-bottom: 30px;
        }

        .location-img-wrapper {
            width: auto;
            height: 361px;
            /* Sesuaikan tinggi gambar */
            overflow: hidden;
            border-radius: 20px;
            /* Membuat sudut melengkung sesuai gambar */
            margin-bottom: 20px;
        }

        .location-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .location-card:hover img {
            transform: scale(1.05);
            /* Efek zoom saat hover */
        }

        .location-name {
            font-size: 14px;
            margin-bottom: 4px;
            /* Membatasi teks jika terlalu panjang (seperti di gambar ...) */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .location-count {
            font-size: 14px;
            color: #888;
        }

        .process-section {
            position: relative;
            min-height: 800px;
            display: flex;
            align-items: center;
            background: url('/image/proses.png') no-repeat center center;
            background-size: cover;
            padding: 80px 0;
        }

        /* Overlay putih untuk kartu teks */
        .process-card {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 550px;
        }

        .process-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #444;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .process-label::before {
            content: "◎";
            font-size: 14px;
        }

        .process-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .process-intro {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* Penomoran dengan garis vertikal */
        .step-item {
            position: relative;
            padding-left: 45px;
            margin-bottom: 35px;
        }

        .step-item:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 15px;
            top: 30px;
            bottom: -20px;
            width: 1px;
            background-color: #dee2e6;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .step-content h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-content p {
            font-size: 14px;
            color: #777;
            margin-bottom: 0;
        }

        .btn-process {
            background: #000;
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            margin-top: 10px;
        }

        .latest-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        /* Header & Filter */
        .filter-btn {
            border: none;
            background: #f8f9fa;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .filter-btn.active {
            background: #000;
            color: #fff;
        }

        /* Card Styling */
        .latest-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .latest-card:hover {
            transform: translateY(-5px);
        }

        .card-img-top {
            height: 250px;
            object-fit: cover;
        }

        .card-body-latest {
            padding: 20px;
        }

        .loc-text {
            font-size: 13px;
            color: #888;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
        }

        .prop-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Spek Icons */
        .spec-info {
            display: flex;
            gap: 15px;
            font-size: 13px;
            color: #666;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Card Footer */
        .card-footer-latest {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
        }

        .brand-logo-small {
            width: 24px;
            height: 24px;
        }

        .price-tag {
            font-weight: 700;
            font-size: 18px;
        }

        .btn-view-all {
            background: #000;
            color: #fff;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            margin-top: 40px;
        }

        /* --- Statistik Styling --- */
        .stats-section {
            background-color: #000;
            color: #fff;
            padding: 80px 0;
        }

        .stat-item h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-item h6 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .stat-item p {
            font-size: 14px;
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* --- Artikel Styling --- */
        .article-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .article-card {
            border: none;
            transition: transform 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-10px);
        }

        .article-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .article-card h5 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
            color: #000;
        }

        .article-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }


        .btn-white-round {
            background: white;
            color: black;
            border-radius: 50px;
            /* Tombol bulat sempurna */
            padding: 12px 35px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .btn-white-round:hover {
            background: transparent;
            color: white;
        }

        .btn-white-round {
            background: white;
            color: black;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }

        .btn-white-round:hover {
            background: #f0f0f0;
            transform: scale(1.05);
        }

        .cta-clean {
            background:
                linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                url('/image/bgseva.jpeg') center / cover no-repeat;
            padding: 40px;
        }

        .footer-wrapper {
            background-color: #000;
            color: white;
            padding-top: 0;
            margin-top: 350px;
        }

        /* CTA Banner melayang di atas footer */
        .cta-footer-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/image/cubas.png');
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            padding: 80px 40px;
            text-align: center;
            /* Ubah -50px menjadi lebih besar, misalnya -100px atau -150px */
            transform: translateY(-220px);
            /* Margin bottom negatif yang besar untuk menarik footer background hitam ke atas */
            margin-bottom: -120px;
            position: relative;
            z-index: 10;
        }

        .footer-main {
            padding: 60px 0 40px;
        }

        .footer-col h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Newsletter Input */
        .newsletter-box {
            position: relative;
            max-width: 100%;
        }

        .newsletter-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #444;
            color: white;
            padding: 10px 40px 10px 0;
            font-size: 14px;
        }

        .newsletter-btn {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: black;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding: 25px 0;
            font-size: 12px;
            color: #666;
        }

        .img-wrap {
            width: 100%;
            overflow: hidden;
        }

        .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Tinggi gambar */
        .img-lg {
            height: 320px;
            /* gambar 1 */
        }

        .img-sm {
            height: 150px;
            /* gambar 2 & 3 */
        }

        /* Detail */
        .badge-status {
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 50px;
        }

        .text-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #222;
        }

        .text-location {
            font-size: 0.85rem;
            color: #666;
        }

        .btn-map {
            background: #000;
            color: #fff;
            font-size: 0.75rem;
            border-radius: 50px;
            padding: 5px 15px;
        }

        .main-image {
            border-radius: 15px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .img-wrap {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
        }

        .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Landscape (Row 1) */
        .landscape {
            aspect-ratio: 16 / 9;
        }

        /* Portrait (Row 2 & 3) */
        .portrait {
            height: 400px;
        }

        /* end */

        /* Jeva Detail*/
        .property-spec {
            font-family: 'Manrope', sans-serif;
        }

        .spec-group {
            margin-bottom: 20px;
        }

        .spec-title {
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .spec-group p {
            margin-bottom: 4px;
            color: #444;
            font-size: 16px;
        }

        .badge-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-size: 14px;
            background: #fff;
        }

        .star-circle {
            width: 28px;
            height: 28px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }

        /* end */

        /* About */
        /* Hero Section */
        .about-header {
            padding: 80px 0 50px;
        }

        .about-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .about-desc {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Image Gallery */
        .img-large {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
        }

        .img-small {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Stats Section Custom */
        .stats-row {
            border-top: 1px solid #eee;
            padding-top: 40px;
            margin-top: 60px;
        }

        .stat-box h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-box h6 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .stat-box p {
            font-size: 14px;
            color: var(--text-muted);
        }

        .history-section {
            padding: 100px 0;
            background-color: #fdfdfd;
        }

        .timeline-container {
            position: relative;
            padding-top: 50px;
        }

        /* Garis horizontal timeline */
        .timeline-line {
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #eee;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            z-index: 2;
            padding-top: 40px;
        }

        /* Titik kuning pada timeline */
        .timeline-dot {
            position: absolute;
            top: -46px;
            /* Menyesuaikan agar tepat di garis */
            left: 0;
            width: 15px;
            height: 15px;
            background-color: #ffc107;
            /* Warna kuning sesuai desain */
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 0 0 1px #ffc107;
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #000;
        }

        .timeline-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            color: #666;
            letter-spacing: 1px;
            margin-bottom: 25px;
            display: block;
        }

        .timeline-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .process-section-about {
            padding: 100px 0;
            background-color: #fff;
        }

        /* Memperbaiki alignment teks agar tidak bertabrakan */
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            position: relative;
        }

        /* Container untuk nomor agar punya lebar tetap */
        .step-number-wrapper {
            min-width: 60px;
            /* Memberi ruang agar nomor tidak menabrak teks */
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1;
            color: #000;
            padding-top: 5px;
        }

        .step-content {
            padding-left: 10px;
            border-left: 1px solid #eee;
            /* Garis vertikal di sebelah teks */
        }

        .step-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #000;
            display: block;
        }

        .step-desc {
            font-size: 14px;
            color: #777;
            line-height: 1.7;
            margin-bottom: 0;
            max-width: 450px;
        }

        /* Merapikan gambar agar memenuhi tinggi kolom */
        .process-img-container {
            height: 100%;
            min-height: 600px;
        }

        .process-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 25px;
        }

        .btn-journey {
            background-color: #000;
            color: #fff;
            border-radius: 50px;
            padding: 14px 35px;
            font-weight: 700;
            font-size: 14px;
            border: none;
            margin-top: 20px;
        }

        /* end */

        /* agent */
        /* Agen Card Style */
        .agent-card {
            border: none;
            background: var(--bg-light);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .agent-img-wrapper {
            position: relative;
            aspect-ratio: 3/4;
            /* Proporsi foto memanjang sesuai desain */
            overflow: hidden;
        }

        .agent-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Mengatur kontainer info agar teks bertumpuk secara vertikal */
        .agent {
            padding: 20px 15px;
            /* Memberi ruang yang cukup di atas dan bawah */
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .agent-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 2px;
            color: #000;
            padding-right: 40px;
            /* Memberi jarak agar teks tidak menabrak tombol panah */
        }

        .agent-email {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0;
        }

        /* Memposisikan tombol panah di pojok kanan atas area info */
        .btn-arrow-agent {
            position: absolute;
            right: 15px;
            top: 20px;
            /* Menyelaraskan dengan posisi atas teks nama */
            width: 32px;
            height: 32px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .btn-arrow-agent:hover {
            background: #333;
            transform: scale(1.1);
        }

        .btn-arrow-agent i {
            font-size: 14px;
        }


        /* end */
        /* Detail Agent Header */

        .agent-logo {
            max-width: 320px;
        }

        .agent-info {
            display: flex;
            justify-content: space-between;
            max-width: 420px;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 8px;
        }

        .agent-info .label {
            color: #888;
            font-size: 14px;
        }

        .agent-info .value {
            font-weight: 500;
            font-size: 14px;
        }

        .contact-section {
            padding: 100px 0;
        }

        .label-top {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-muted);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .contact-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .contact-intro {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 60px;
            max-width: 500px;
        }

        /* Info Grid */
        .info-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .info-value {
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 30px;
            display: block;
            text-decoration: none;
            color: #000;
        }

        /* Form Styling */
        .form-label {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-control {
            border: none;
            background-color: var(--input-bg);
            padding: 15px;
            border-radius: 8px;
            font-size: 0.95rem;
        }

        .form-control:focus {
            background-color: #ededed;
            box-shadow: none;
            border: none;
        }

        textarea.form-control {
            min-height: 150px;
        }

        .btn-submit {
            background-color: #000;
            color: #fff;
            width: 100%;
            padding: 15px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            margin-top: 20px;
            transition: 0.3s;
        }

        .btn-submit:hover {
            background-color: #333;
        }



        .contact-form .form-control {
            background: #f5f5f5;
            border: none;
            border-radius: 6px;
            padding: 12px 14px;
            font-size: 14px;
        }

        .contact-form .form-control:focus {
            box-shadow: none;
            background: #f0f0f0;
        }

        .contact-item div {
            font-size: 14px;
        }


        .faq-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .faq-title {
            font-size: 3.5rem;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .faq-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 60px;
            max-width: 500px;
        }

        /* Pengaturan Gambar FAQ */
        .faq-image-container {
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
            min-height: 500px;
        }

        .faq-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gaya Accordion Kustom */
        .accordion-item {
            border: none;
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
        }

        .accordion-button {
            padding: 25px 0;
            font-size: 1.1rem;
            font-weight: 500;
            color: #000;
            background-color: transparent !important;
            box-shadow: none !important;
            display: flex;
            justify-content: flex-start;
            gap: 15px;
        }

        /* Mengganti ikon default Bootstrap dengan + dan - */
        .accordion-button::after {
            order: -1;
            /* Pindahkan ikon ke kiri */
            margin-left: 0;
            margin-right: 0;
            content: "+";
            background-image: none;
            font-size: 1.5rem;
            font-weight: 300;
            transition: 0.3s;
        }

        .accordion-button:not(.collapsed)::after {
            content: "−";
            transform: none;
        }

        .accordion-body {
            padding: 0 0 25px 40px;
            /* Jarak teks agar sejajar di bawah judul */
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }



        /* Responsif */
        @media (max-width: 991px) {
         
            .image-collage-wrapper {
                margin-bottom: 80px;
            }
         .btn-hero {
                width: 100%;
            }

            .headline {
                font-size: 32px;
            }

            .floating-img-top,
            .floating-img-bottom {
                display: none;
            }

            .main-image-box {
                width: 100%;
            }

            .process-section {
                background: #f8f9fa;
                /* Hilangkan background gambar di mobile agar teks terbaca */
                min-height: auto;
                padding: 40px 0;
            }

            .image-wrapper {
                height: 100%;
            }

            .process-card {
                padding: 30px;
                max-width: 100%;
            }

            .process-title {
                font-size: 28px;
            }

            .stat-item:not(:last-child) {
                border-right: 1px solid #333;
                padding-right: 40px;
            }

            .stat-item:not(:first-child) {
                padding-left: 40px;
            }

            .stat-item {
                margin-bottom: 40px;
            }

            .cta-clean {
                padding: 30px 20px;
                text-align: center;
            }

            .landscape {
                aspect-ratio: 4 / 3;
            }

            .portrait {
                height: 220px;
            }

            .timeline-line {
                display: none;
            }

            .timeline-dot {
                left: -20px;
                top: 10px;
            }

            .timeline-item {
                padding-left: 30px;
                margin-bottom: 40px;
                border-left: 2px solid #eee;
            }

            .col-mobile-2 {
                width: 50%;
                /* Membuat 2 kolom di mobile */
            }

            .agent-name {
                font-size: 0.9rem;
            }

            .agent-email {
                font-size: 0.75rem;
            }

            .agent-info {
                padding: 10px;
            }

            .btn-arrow-agent {
                width: 25px;
                height: 25px;
                right: 10px;
            }

            .agent-main-info h1 {
                    font-size: 2.2rem;
                }

                .agent-profile-img {
                    margin-bottom: 40px;
                }

                .contact-me-title {
                    margin-top: 50px;
                }

                .agent-logo {
                    max-width: 220px;
                    margin-bottom: 20px;
                }

                .agent-info {
                    max-width: 100%;
                }

                .contact-title {
                    font-size: 2.5rem;
                }

                .contact-section {
                    padding: 60px 0;
                }

                .faq-title {
                    font-size: 2.5rem;
                }

                .faq-image-container {
                    margin-bottom: 40px;
                    min-height: 400px;
                }
                

            }