 :root {
            --color-bg: #ffffff;
            --color-text: #0c4256;
            --color-primary: #0c4256;
            --color-primary-dark: #072a36;
            --color-muted: #68838d;
            --color-danger: #c0392b;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: var(--color-bg);
            margin: 0;
            padding: 0;
            color: var(--color-text);
        }

        .re_b_section {
            padding: 30px 15px;
            max-width: 1200px;
            margin: auto;
        }

        .re_b_heading {
            font-size: 2rem;
            font-weight: bold;
            color: var(--color-primary-dark);
            text-align: center;
            margin-bottom: 20px;
        }

        .re_b_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .re_b_item {
            background: #f9f9f9;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease;
        }

        .re_b_item:hover {
            transform: translateY(-3px);
        }

        .re_b_title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--color-primary);
            margin-bottom: 5px;
        }

        .re_b_location {
            font-size: 0.95rem;
            color: var(--color-muted);
            margin-bottom: 10px;
        }

        .re_b_price {
            font-size: 1rem;
            font-weight: bold;
            color: var(--color-danger);
            margin-bottom: 10px;
        }

        .re_b_link {
            display: inline-block;
            padding: 8px 14px;
            background-color: var(--color-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 0.9rem;
            transition: background-color 0.2s ease;
        }

        .re_b_link:hover {
            background-color: var(--color-primary-dark);
        }