/* --- General styles --- */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333 !important;
    opacity: 1 !important;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}
/* New style to align logo and nav */
header {
    background-color: #004080;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 30px; /* Kept margin from original files */
}
.logo-placeholder img {
    height: 50px; /* Suggested size for logo */
    width: auto;
}
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
nav a {
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
}
section {
    margin-bottom: 45px;
}
/* Specific styles for hero section heading */
.hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #004080 !important;
}

/* Specific styles for hero section paragraph */
.hero p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333 !important;
    opacity: 1 !important;
}
h2 {
    font-size: 18px;
    color: #004080 !important;
    margin-top: 0;
    margin-bottom: 15px;
}
h3 {
    font-size: 16px;
    color: #004080 !important;
    margin-top: 10px;
    margin-bottom: 5px;
}
.cta {
    display: inline-block;
    background-color: #ff9900;
    color: #fff !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}
.cta:hover {
    background-color: #e68a00;
    text-decoration: none;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 40px;
}
footer a {
    color: #ffd700 !important;
    text-decoration: none;
}
/* Fix for list styles being overridden */
.intro ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #333 !important;
    opacity: 1 !important;
}
.intro ul li {
    margin-bottom: 5px;
}
/* Fix for text being unreadable due to opacity being 0 or near 0 */
.intro p, .about-content p, .cta-section p, .viator-section p, .about-us-statement p {
    color: #333 !important;
    opacity: 1 !important;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* Ensures text wrapping and spacing for mobile */
.intro ul {
    padding-left: 20px;
    font-size: 16px !important;
    line-height: 1.6;
}
/* Fix for sections where text isn't visible */
.intro, .about-us-statement, .viator-section {
    margin-bottom: 15px;
    padding: 10px;
}
/* Fixes for any content that may overflow */
.intro ul li, .about-us-statement p, .viator-section p {
    color: #333 !important;
    opacity: 1 !important;
    word-wrap: break-word;
    overflow: visible;
}
/* Increases font size for smaller screens to ensure readability */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
    h2, h3 {
        font-size: 20px;
    }
    .cta {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* Safari Fix for Unreadable Text */
.intro, .about-us-statement, .viator-section {
    padding-left: 15px;
    padding-right: 15px;
}
/* Ensured viator-section p has !important */
.viator-section p {
    font-size: 16px;
    line-height: 1.8;
}