        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa;
        }
        .room-section {
            padding: 60px 0;
        }
        .section-title {
  	    font-style: normal;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
/*            text-transform: uppercase; */
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #b19453; /* Warna aksen Aston */
            margin: 30px auto 0;
        }
        .room-card {
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            border-radius: 0px;
            overflow: hidden;
            background: #fff;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }
        .room-card:hover {
            transform: translateY(-5px);
        }
        /* Memastikan gambar carousel seragam */
        .carousel-item img {
            height: 260px;
            object-fit: cover;
            width: 100%;
        }
        .room-caption-body {
            padding: 20px;
        }
        .room-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        .room-size {
            font-size: 0.85rem;
            color: #7f8c8d;
            margin-bottom: 15px;
        }
        .room-amenities {
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 20px;
            min-height: 40px; /* Menjaga tinggi kolom ikon agar sejajar */
        }
        .room-amenities i {
            color: #b19453;
            margin-right: 5px;
        }
        .room-amenity-item {
            display: inline-block;
            margin-right: 12px;
            margin-bottom: 5px;
        }
        .price-area {
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        .price-tag {
            color: #b19453;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 2px;
        }
        .price-sub {
            font-size: 0.75rem;
            color: #95a5a6;
        }
        .btn-aston {
            background-color: #b19453;
            color: #fff;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 0px;
            border: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .btn-aston:hover {
            background-color: #967c42;
            color: #fff;
        }
        .btn-link-aston {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .btn-link-aston:hover {
            color: #b19453;
        }
