        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f8f9fa;
        }
        .navbar {
            background-color: #d71149;
            border-bottom: 2px solid #ddd;
            transition: all 0.3s ease-in-out;
        }
        .navbar-brand img {
            height: 50px;
        }
        .nav-link {
            color: #fff !important;
            position: relative;
            transition: color 0.3s ease-in-out;
        }
        .nav-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #fff;
            visibility: hidden;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out;
        }
        .nav-link:hover {
            color: #fff !important;
        }
        .nav-link:hover::before {
            visibility: visible;
            transform: scaleX(1);
        }
        .carousel-item {
            height: 400px;
            background-size: cover;
            background-position: center;
        }
        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 1rem;
            border-radius: 10px;
        }
        .booking-form {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .facility-section {
            padding: 2rem;
            background-color: #fff;
            margin-top: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .facility-item {
            margin-bottom: 1.5rem;
        }
        .facility-icon {
            font-size: 2rem;
            color: #003B95;
            margin-right: 1rem;
        }
        .facility-text {
            font-size: 1.2rem;
            color: #333;
        }
        .facility-text h5 {
            margin: 0;
            font-weight: bold;
        }
        .facility-text p {
            margin: 0;
        }
        .btn-animated {
            animation: animate-btn 1s infinite;
        }
        .video-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
        }
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        @keyframes animate-btn {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .room-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 15px;
            text-align: center;
        }

        .room-title {
            font-size: 1.5rem;
            margin-top: 15px;
            color: #d71149;
        }

        .room-facilities {
            font-size: 1rem;
            color: #6c757d;
        }

        .btn-book {
            background-color: #d71149;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }

        .btn-book:hover {
            background-color: #bb103e;
            color: white;
        }

        @media (max-width: 767px) {
            .room-card {
                margin-bottom: 15px;
            }
        }
        .footer {
            background-color: #343a40;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            display: inline;
            margin-right: 1rem;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .footer-copyright {
            margin-top: 1rem;
        }
        h2 {
        background-color: #d71149;
        color: white;
        padding: 10px 20px; /* Atur padding sesuai kebutuhan */
        border-radius: 5px; /* Untuk memberikan sudut elemen yang lebih lembut */
        display: inline-block; /* Agar latar belakang hanya sepanjang teks */
        }
