:root {
    --primary-color: #ffffff; /* Background */
    --secondary-color: #000000; /* Main Text */
    --accent-color: #92c01b; /* Green accent */
    --text-color: #333333; /* Subtle Text */
    --border-color: #e0e0e0; /* Lighter borders for mobile */
    --box-shadow: 0 9px 9px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.5;
    font-size: 13px; /* Base font size */
}

.container {
    width: 100%;
    padding: 0 16px; /* Smaller padding on mobile */
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-left: 0; /* Remove any padding */
}

.logo-image {
    height: 40px;
    margin-right: 1px; /* Space between image and text */
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Header - simplified for mobile */
header {
    background-color: var(--primary-color);
    padding: 10px 0;
    position: sticky; /* Sticky header for mobile */
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow);
}

.header-content {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.3rem; /* Smaller on mobile */
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;

}

/*.logo::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background-color: var(--accent-color);
}*/


/* Mobile menu button - IMPROVED */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    width: 40px;
    height: 30px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 20px;
    background: var(--secondary-color);
    border-radius: 3px;
    opacity: 1;
    left: 8px;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 12px;
}

.menu-toggle span:nth-child(2) {
    top: 19px;
}

.menu-toggle span:nth-child(3) {
    top: 26px;
}

.menu-toggle.active span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.rating-stars i {
    font-size: 16px; /* Adjust star size as needed */
    margin-right: 2px; /* Space between stars */
    margin-bottom: 15px
}

.comment-count {
    margin-left: 5px;
    font-size: 0.9em;
    color: #666;
}

/* Adjust the room-card.booked style to ensure text readability (around line 230) */
.room-card.booked {
    background-color: #a9a9a9; /* Lighter gray for booked rooms (was #4a4a4a) */
    color: #333333; /* Darker text for better contrast */
}

.room-card.booked .room-price {
    color: #333333; /* Darker price text for readability */
}

.room-card.booked .room-meta {
    color: #555555; /* Slightly darker gray for meta text */
}

/* Add styling for the booked-label (add after .room-card.booked styles) */
.booked-label {
    top: 10px; /* Distance from the top of the room card */
    left: 10px; /* Distance from the left of the room card */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
    color: #ffffff; /* White text for contrast */
    padding: 2px 8px; /* Small padding for the label */
    font-size: 0.7rem; /* Very small text */
    border-radius: 4px; /* Rounded corners */
    z-index: 1; /* Ensure it appears above the image */
}

/* Navigation - IMPROVED for mobile */
nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;

}

nav.active {
    max-height: 300px;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

nav ul li:last-child {
    border-bottom: none;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

nav ul li a:hover, 
nav ul li a:active {
    background-color: rgba(146, 192, 27, 0.1);
    color: var(--accent-color);
}

/* Language Switcher - simplified for mobile */
.language-switcher {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px 20px;
    padding: 10px 0;
    /* border-top: 1px solid var(--border-color);*/

}

.language-switcher a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;

}

.language-switcher a.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Main Content */
main {
    padding: 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 0px;
    line-height: 1.3;
}

h1 {
    font-size: 1.1rem;
    padding-top: 10px; /* Adjust as needed */
}

h2 {
    font-size: 1.1rem;
    padding-top: 16px;
}

/* Room Cards - optimized for mobile */
.room-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.room-card {
    background-color: var(--primary-color);
    border-radius: 13px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    width: 100%;
    max-width: 320px; /* Further reduce the card width to ensure buttons fit */
    margin: 0 auto;
    box-sizing: border-box; /* Include padding in width calculation */
}

.room-card:active {
    transform: scale(0.98);
}

/* Ensure the room-image is positioned relatively to support the absolute positioning of the label */
.room-image {
    position: relative; /* Allow absolute positioning of the label inside */
    height: 180px;
    overflow: hidden;
    z-index: 0;
}

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

.room-details {
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    display: flex; /* Use flex to control the layout */
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-between; /* Distribute space evenly */
}

.room-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    white-space: nowrap; /* Prevent title from wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis for long titles */
}

.room-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 9px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 6px;

}

/* Room Actions Container */
.room-actions {
    display: flex;;
    align-items: left; /* Center buttons vertically within the container */
    justify-content: left;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px; /* Increase margin-top slightly to push buttons down */
    width: 100%;
    box-sizing: border-box;
    padding: 0 4px;
    }

/* Buttons - more touch-friendly */
/* Update the .btn styles to ensure consistency (around line 270) */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 6px 10px; /* Slightly smaller padding */
    border: none;
    border-radius: 6px; /* Slightly smaller border radius */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.85rem; /* Slightly smaller font size */
    text-align: center;
    flex: 1 3 auto; /* Allow buttons to grow but wrap */
    min-width: 70px; /* Slightly smaller minimum width */
    max-width: 160px; /* Limit button width to prevent overflow */
}

.btn:hover {
    background-color: var(--accent-hover-color, #7aa017); /* Slightly darker green */
}

.btn:active {
    transform: translateY(2px);

}

.btn-secondary {
    background-color: #6c757d; /* Gray for secondary actions */
    color: white;
    display: inline-flex; /* Use flex to center content within the button */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

/* Style for the danger button (Delete) */
.btn-danger {
    background-color: #f56c6c; /* Red for delete */
    color: white;
}

/* Style for the primary button (View/Details) */
.btn-primary {
    background-color: var(--accent-color); /* Green for primary actions */
    color: white;
    display: inline-flex; /* Ensure the button itself uses flex */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

/* Update the .btn-booked style to match the lighter gray (around line 300) */
.btn-booked {
    background-color: #a9a9a9; /* Match the lighter gray of the booked room card */
    color: #333333; /* Darker text for contrast */
}


/* Style for the available (Mark as Booked) button */
.btn-available {
    background-color: #36454F;
    color: white;
}
.btn-block {
    display: block;
    width: 100%;
}
/* Ensure forms within room-actions don't add extra spacing */
.delete-form, .toggle-form {
    display: inline;
    flex: 1;
    margin: 0;
}

/* Forms - optimized for mobile */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--primary-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(146, 192, 27, 0.2);
}

/* Search Form - mobile friendly */
.search-form {
    background-color: var(--primary-color);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.search-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Date picker - mobile friendly */
.date-picker {
    position: relative;
}

.date-picker input {
    padding-right: 40px;
}

.date-picker::after {
    content: "\1F4C5";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* In style.css */

/* Add styling for the btn-contact class (add after .btn-available, around line 310) */
.btn-contact {
    background-color: #25D366; /* WhatsApp green */
    color: #ffffff;
    display: inline-flex; /* Ensure the button itself uses flex */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

.btn-contact-room-detail{
    background-color: #25D366; /* WhatsApp green */
    color: #ffffff;
    display: inline-flex; /* Ensure the button itself uses flex */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    margin-top: 9px;
}

.btn-contact:hover {
    background-color: #20b356;
}

.btn-contact.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Ensure forms don't add extra spacing */
.delete-form, .toggle-form {
    display: inline;
    flex: 1 1 auto;
    margin: 0;
    min-width: 70px;
    max-width: 100px;
}
/* Footer */
/* Updated Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: #ffc;
    padding: 30px 0 80px; /* Extra bottom padding for mobile */
    text-align: center;
    margin-top: 40px;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
}

/* New About Us section */
.footer-about {
    grid-column: 1 / -1; /* Span full width */
    margin-bottom: 20px;
}

.footer-about h3 {
    color: white;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links h3 {
    color: white;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 15px;
}

/* Media query adjustments */
@media (min-width: 768px) {
    footer .container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
            "about about about"
            "links1 links2 links3";
        text-align: left;
    }

    .footer-about {
        grid-area: about;
        margin-bottom: 30px;
    }
}
/* Alerts */
.alert {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    border-left: 4px solid;
}

.alert-success {
    background-color: #f0f9eb;
    color: #67c23a;
    border-color: #67c23a;
}

.alert-danger {
    background-color: #fef0f0;
    color: #f56c6c;
    border-color: #f56c6c;
}

/* Room Detail Page */
.room-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-gallery {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.room-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-info {
    padding: 16px;
    background-color: var(--primary-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.room-features {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 30px; /* Keep the bottom margin from the original room detail styles */
}


.room-feature {
    display: flex;
    flex-direction: row; /* Ensure icon and text are on the same line */
    align-items: center; /* Vertically center the icon and text */
    gap: 10px; /* Keep the spacing between icon and text */
}

/* Ensure the icon size is consistent */
.room-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Optional: Ensure the text doesn’t wrap and aligns nicely */
.room-feature span {
    white-space: nowrap; /* Prevent text from wrapping */
    font-size: 0.9rem; /* Slightly smaller text for better fit */
}

@media (min-width: 768px) {
    .room-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Back to 2 columns on larger screens */
    }
}

.room-feature i.fas.fa-home {
    margin-left: -3px; /* Move the home icon 5px to the left */
}

/* Booking form */
.booking-form {
    margin-top: 24px;
    padding: 20px;
    background-color: var(--primary-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

/* Gallery - touch friendly */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.gallery-item {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Map */
#map {
    height: 250px;
    width: 100%;
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
}

/* Bottom navigation bar for mobile */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    padding: 9px 0 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.7rem;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.bottom-nav-item.active {
    color: var(--accent-color);
}

.bottom-nav-item.active i {
    color: var(--accent-color);
}

/* Filter drawer for mobile */
.filter-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    touch-action: pan-y; /* Ensure touch scrolling is allowed */
}

.filter-drawer.active {
    transform: translateY(0);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.filter-options {
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y; /* Allow vertical scrolling */
}

/* Style the scrollbar for better visibility */
.filter-options::-webkit-scrollbar {
    width: 8px;
}

.filter-options::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 4px;
}

.filter-options::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}
.filter-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

/* Price range slider */
.price-slider {
    width: 100%;
    margin: 20px 0;
}

.price-range {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--text-color);
}

/* Loading spinner */
.spinner {
    width: 40px;
    height: 40px;
    margin: 30px auto;
    border: 4px solid rgba(146, 192, 27, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pull to refresh indicator */
.refresh-indicator {
    text-align: center;
    padding: 15px;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    opacity: 1;
}

/* Media queries for different screen sizes */
@media (min-width: 480px) {
    .container {
        padding: 0 24px;
    }

    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 24px;
    }

    .menu-toggle {
        display: none;
    }

    nav {
        position: static;
        max-height: none;
        width: auto;
        box-shadow: none;
        overflow: visible;
        background-color: transparent;
    }

    nav ul {
        flex-direction: row;
        padding: 0;
        align-items: center; /* Vertical alignment */
        height: 50%; /* Full height of header */
    }

    nav ul li {
        margin: 0 0 0 20px;
        border-bottom: none;
    }

    nav ul li a {
        padding: 5px;
    }

    nav ul li a:hover {
        background-color: transparent;
    }

    .language-switcher {
        margin: 0;
        padding: 0;
        border-top: none;
    }

    .room-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .room-detail {
        flex-direction: row;
    }

    .bottom-nav {
        display: none;
    }

    footer .container {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    footer {
        padding: 40px 0;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .room-features {
        display: flex; /* Use flexbox instead of grid */
        flex-direction: column; /* Stack items vertically */
        gap: 12px; /* Keep the spacing between rows */
        margin-top: 16px;
        margin-bottom: 30px; /* Keep the bottom margin from the original room detail styles */
    }

    #map {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* For very large screens, you might need this additional media query */
@media (min-width: 768px) {
    .logo::before {
        left: -24px; /* Matches the larger container padding at this breakpoint */
    }
}

/* Accessibility improvements */
:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

input[type="checkbox"], input[type="radio"] {
    width: 20px;
    height: 20px;
}

button, a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    @media (min-width: 768px) {
        nav ul {
            margin-top: 9px; /* Adjust this value to move down more or less */
        }
    }

.btn {
    display: inline-flex; /* Use flex to center content within the button */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    }




.search-section {
    margin: 20px 0;
    position: relative;
}

.search-toggle {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

.search-input:hover,
.search-input:focus {
    border-color: #92c01b;
}

.search-icon {
    padding: 15px 15px;
    border: none;
    border-left: none;
    border-radius: 0 6px 6px 0;
    background-color: #92c01b;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-icon:hover {
    background-color: #92c01b;
}

.search-form-container {
    display: none;
    background-color: #92c01b;
    border: none;
    border-radius: 12px;
    padding: 0px;
    box-shadow: 0 1px 1px rgba(1, 0, 0, 9);
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.search-form-container.active {
    display: block;
}

.search-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: black;
}

.form-group select,
.form-group input[type="number"],
.form-group input[type="date"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group select:focus,
.form-group input[type="number"]:focus,
.form-group input[type="date"]:focus {
    border-color: #92c01b;
    outline: none;
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}


.btn:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-toggle {
        max-width: 100%;
    }
    .search-form-container {
        width: 100%;
    }
    .search-options {
        grid-template-columns: 1fr;
    }
}


.options {
    position: relative; /* This is important */
}

.options::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    width: 6px;
    height: 100%; /* This will match the height of the h2 */
    background-color: var(--accent-color);
}

@media (min-width: 768px) {
    .options::before {
        left: -15px;
    }
}

.options::before {
    content: "";
    position: absolute;
    left: -15px;
    top: -269px; /* Adjust as needed */
    width: 6px;
    height: 306px;
    background-color: var(--accent-color);
}
