       /* Custom styles for Getahun Hotel */
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            padding-top: 50px; /* Space for fixed navbar */
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: #333;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .navbar-inverse {
            background-color: #2c3e50; /* Darker blue/grey */
            border-color: #2c3e50;
        }

        .navbar-inverse .navbar-brand,
        .navbar-inverse .navbar-nav > li > a {
            color: #ecf0f1; /* Light text */
            font-weight: bold;
        }

        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-brand:hover {
            color: #f39c12; /* Orange hover */
        }

        .hero-img {
            width: 100%;
            height: 600px; /* Increased height for better visual impact */
            object-fit: cover;
            filter: brightness(70%); /* Darken image for text readability */
        }

        #home {
            position: relative;
            text-align: center;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 600px; /* Match img height */
        }

        .hero-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
            border-radius: 8px;
        }

        .hero-overlay h1 {
            font-size: 4em;
            margin-bottom: 10px;
            color: white; /* Ensure text is white */
        }

        .hero-overlay p {
            font-size: 1.5em;
            margin-bottom: 30px;
            color: #eee;
        }

        .btn-warning {
            background-color: #f39c12;
            border-color: #f39c12;
            color: white;
            font-size: 1.2em;
            padding: 12px 30px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .btn-warning:hover {
            background-color: #e67e22;
            border-color: #e67e22;
            color: white;
        }

        .section-heading {
            text-align: center;
            font-size: 3em;
            margin-bottom: 40px;
            color: #2c3e50;
        }

        .full-width-section {
            padding: 80px 0; /* More vertical padding */
            background-color: #f8f8f8; /* Light background for sections */
        }

        .feature-column {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px; /* Space between feature columns */
        }

        .feature-column .thumbnail {
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .feature-column .thumbnail img {
            border-radius: 8px 8px 0 0;
            transition: transform 0.3s ease;
        }

        .feature-column .thumbnail img:hover {
            transform: scale(1.05);
        }

        .feature-column .thumbnail .caption {
            padding: 15px;
            color: #555;
            min-height: 80px; /* Ensure consistent height */
        }

        .toggle-btn {
            display: block;
            width: 100%;
            padding: 12px 20px;
            background-color: #3498db; /* Blue button */
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 20px;
        }

        .toggle-btn:hover {
            background-color: #2980b9;
        }

        .feature-content {
            margin-top: 20px;
            padding: 20px;
            background-color: #ecf0f1; /* Light grey background for content */
            border-radius: 5px;
        }

        .menu-list {
            list-style: none;
            padding: 0;
        }

        .menu-list li {
            background-color: #fff;
            margin-bottom: 10px;
            padding: 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            font-size: 1.1em;
        }

        .menu-list li input[type="checkbox"] {
            margin-right: 15px;
            transform: scale(1.5); /* Larger checkbox */
        }

        .menu-list input[type="text"] {
            width: 100%;
            padding: 10px;
            margin-top: 15px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .menu-list .btn {
            width: 100%;
            padding: 12px;
            font-size: 1.2em;
        }

        .order-summary {
            margin-top: 20px;
            padding: 15px;
            background-color: #d4edda; /* Light green for success messages */
            border: 1px solid #c3e6cb;
            border-radius: 5px;
            color: #155724;
            font-weight: bold;
        }

        /* Contact Us Section */
        #contact-us {
            padding: 80px 0;
            background-color: #fff;
        }

        .contact-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-info {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .info-block {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            margin: 20px;
            padding: 30px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            text-align: left;
        }

        .info-block h3 {
            color: #3498db;
            margin-bottom: 15px;
            font-size: 1.8em;
        }

        .info-block p {
            margin-bottom: 8px;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

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

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-form button {
            background-color: #2ecc71; /* Green submit button */
            color: white;
            padding: 14px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.2em;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .contact-form button:hover {
            background-color: #27ae60;
        }

        .map-section {
            margin-top: 60px;
            text-align: center;
        }

        .map-container {
            border: 5px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* About Us Section */
        #about-us {
            padding: 80px 0;
            background-color: #f8f8f8;
        }

        .about-us-content .col-sm-4 {
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 20px; /* Space between columns on smaller screens */
        }

        .about-us-content .col-sm-4:nth-child(even) {
            background-color: #eaf4ff !important; /* Lighter blue for alternating sections */
        }

        .about-us-content .col-sm-4:nth-child(odd) {
            background-color: #f0f7ff !important; /* Even lighter blue */
        }

        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 25px 0;
            font-size: 0.9em;
        }

        /* Room Booking Modal */
        .modal-content {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .modal-header {
            background-color: #3498db;
            color: white;
            border-radius: 10px 10px 0 0;
            padding: 20px;
            border-bottom: none;
        }

        .modal-header .close {
            color: white;
            opacity: 1;
            font-size: 2em;
        }

        .modal-title {
            font-size: 2em;
            font-weight: bold;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-footer {
            border-top: none;
            padding: 15px 30px;
            text-align: center;
        }
        .room-booking-form .form-group label {
            font-weight: normal; /* Override Bootstrap bold */
        }
        .room-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .room-card {
            background-color: #fefefe;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            text-align: center;
            padding-bottom: 20px;
            transition: transform 0.3s ease;
        }
        .room-card:hover {
            transform: translateY(-5px);
        }
        .room-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }
        .room-card h4 {
            font-size: 1.5em;
            margin-top: 15px;
            color: #2c3e50;
        }
        .room-card p {
            padding: 0 15px;
            color: #555;
            font-size: 0.95em;
        }
        .room-card .price {
            font-size: 1.8em;
            font-weight: bold;
            color: #e67e22;
            margin: 10px 0;
        }
        .room-card .btn {
            margin-top: 15px;
            font-size: 1em;
            padding: 10px 25px;
        }

        /* Testimonials Section */
        #testimonials {
            background-color: #ecf0f1; /* Light grey background */
            padding: 80px 0;
            text-align: center;
        }
        .testimonial-item {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
        }
        .testimonial-item::before {
            content: "\f10d"; /* Font Awesome quote icon */
            font-family: 'FontAwesome';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 3em;
            color: rgba(0,0,0,0.05);
            z-index: 1;
        }
        .testimonial-item p {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        .testimonial-author {
            font-weight: bold;
            color: #3498db;
            font-style: normal;
            font-size: 1.1em;
        }
        .rating .fa {
            color: #f1c40f; /* Yellow stars */
        }