body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

header {
    background-color: #2a9d8f;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #264653;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
}

h1 {
    color: #e9c46a;
    margin-bottom: 10px;
    font-size: 2.8em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

nav {
    margin-top: 15px;
}

nav a {
    margin: 0 25px;
    text-decoration: none;
    color: #fefae0;
    font-weight: bold;
    font-size: 1.3em;
    transition: color 0.3s ease, background-color 0.2s ease, transform 0.2s ease;
    padding: 10px 18px;
    border-radius: 8px;
}

nav a:hover {
    color: #e76f51;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2,
h3 {
    color: #264653;
    border-bottom: 2px solid #e9c46a;
    padding-bottom: 8px;
    margin-top: 40px;
    font-size: 2em;
}

h3 {
    font-size: 1.6em;
    border-bottom: 1px solid #eee;
}

h4 {
    color: #e76f51;
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 1.2em;
    font-size: 1.05em;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1.2em;
}

ul li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    border-top: 4px solid #264653;
    color: #fefae0;
    font-size: 0.95em;
    background-color: #2a9d8f;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fefae0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 3.2em;
    color: #e76f51;
    margin-bottom: 20px;
    border-bottom: none;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4em;
    color: #264653;
    max-width: 750px;
    margin: 0 auto 20px auto;
}

.listing,
.activity-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    background-color: #fafafa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.listing h3,
.activity-card h3 {
    margin-top: 0;
    border-bottom: none;
    color: #e76f51;
}

.listing p,
.activity-card p {
    margin-bottom: 0.8em;
}

.faq-item details {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.faq-item summary {
    font-size: 1.2em;
    font-weight: bold;
    color: #264653;
    padding: 15px 20px;
    cursor: pointer;
    outline: none;
    border-bottom: 1px solid transparent;
    transition: background-color 0.2s ease, border-bottom 0.2s ease;
}

.faq-item summary:hover {
    background-color: #e9f5f4;
}

.faq-item details[open] summary {
    background-color: #e9f5f4;
    border-bottom: 1px solid #2a9d8f;
    border-radius: 8px 8px 0 0;
}

.faq-item details p {
    padding: 0 20px 15px 20px;
    margin-top: 0;
    color: #555;
}

.on-page-nav {
    background-color: #fefae0;
    border: 1px solid #e9c46a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.on-page-nav h3 {
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9c46a;
    padding-bottom: 5px;
    color: #e76f51;
}

.on-page-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.on-page-nav ul li {
    margin-bottom: 8px;
}

.on-page-nav ul li a {
    text-decoration: none;
    color: #264653;
    font-weight: normal;
    font-size: 1em;
    transition: color 0.2s ease;
}

.on-page-nav ul li a:hover {
    color: #e76f51;
    text-decoration: underline;
}