.sanctuary-section {
    background: #f9fbfd;
    margin-top: 5%;
}

/* Title */
.section-title {
    font-size: 34px;
    font-weight: 700;
}

.section-subtitle {
    max-width: 620px;
    color: #777;
    font-size: 15px;
}

/* Image Card */
.room-image-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

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

/* Price Badge */
.price-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f39c12;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

/* Content */
.room-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.room-text {
    font-size: 14px;
    color: #666;
    max-width: 520px;
}

/* Amenities */
.amenities-title {
    margin-top: 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.amenities-list p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.amenities-list i {
    color: #f39c12;
    margin-right: 8px;
}

/* Button */
.reserve-btn {
    background: #0b0b2d;
    color: white;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
}

.reserve-btn:hover {
    background: #f39c12;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .room-image-card {
        margin-bottom: 20px;
    }
}

.policy-section {
    background: #fbfcfe;
}

/* Card Box */
.policy-box {
    background: white;
    border-radius: 20px;
    padding: 28px 34px;
    border: 1px solid #eef1f6;
}

/* Titles */
.policy-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Bold Text */
.policy-bold {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

/* Subtext */
.policy-text {
    font-size: 13px;
    color: #777;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-box {
        text-align: center;
        padding: 22px;
    }

    .policy-text {
        margin: auto;
    }
}