/* Hero Section */
 .hero-section-accommodation {
    text-align: center;
    padding: 50px 20px;
    background-color: transparent; /* Matches the other pages */
    color: 000000;
    font-family: 'Libre Baskerville', serif;
    border-bottom: 2px solid #001489; /* Optional: subtle bottom border for separation */
}

.hero-section-accommodation h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-section-accommodation p {
    font-size: 1.2em;
    max-width: 800px;
    margin: auto;
    color: #000000;
}


/* Content Section */
.content-section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #001489;
    font-size: 2em;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1.1em;
    color: #225564;
    margin-bottom: 15px;
}

.content-section ul {
    margin-left: 20px;
    list-style-type: disc;
    margin-bottom: 15px;
}

.content-section ul li {
    font-size: 1em;
    color: #001489;
    margin-bottom: 10px;
}

/* Responsive Image */
.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* City Section */
.city-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.city-section div {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.city-section h3 {
    color: #001489;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.city-section p {
    font-size: 1em;
    color: #225564;
}

/* Footer Styles (Match other pages) */
footer {
    background-color: #001489;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #7CB9E8;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #7CB9E8;
}

.footer-credit {
    margin-top: 20px;
    font-size: 0.8em;
    color: white;
}


footer {
    background-color: #001489; /* Matches the dark blue theme */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
    font-family: 'Libre Baskerville', serif; /* Match font style */
}

.footer-links a:hover {
    color: #7CB9E8;
    text-decoration: underline;
}

.footer-contact p {
    margin: 5px 0;
    font-family: 'Libre Baskerville', serif;
    color:white;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #7CB9E8;
}

.footer-credit {
    margin-top: 15px;
    font-size: 0.9em;
    font-family: 'Libre Baskerville', serif;
}

.author-section {
    text-align: center;
    margin: 40px 20px;
    padding: 20px;
    background-color: #f9f9f9;
    font-family: 'Libre Baskerville', serif;
    color: #001489;
}

.author-section p {
    font-size: 1em;
    margin: 0;
}

.author-section strong {
    font-weight: bold;
    color: #001489;
}


