.destination-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.destination-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}
.destination-flag-wrapper {
    margin-bottom: 22px;
}
.destination-flag {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-top: 10px;
    pointer-events: none;
    user-select: none;
}
.destination-intro {
    margin-bottom: 40px;
}
.destination-intro h6 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 15px;
    word-wrap: break-word;
    margin-top: 10px;
}
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.destination-item {
    display: block;
    text-align: left;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.destination-tour-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.destination-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
    user-select: none;
}
.tour-type-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.destination-rating {
    margin: 10px 0;
    font-size: 14px;
}
.destination-rating span {
    font-weight: bold;
}
.destination-name {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0;
}
.destination-duration-and-price {
    display: flex;
    justify-content: space-between;
    color: #008000;
}
.destination-duration-and-price .left, .destination-duration-and-price .right {
    display: flex;
    align-items: center;
}
.destination-duration-and-price .left i {
    margin-right: 5px;
}
.destination-item:hover .destination-name {
    color: var(--primary-color);
}
.destination-item:hover .destination-tour-image img {
    transform: scale(1.1); /* Slight zoom effect */
    transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    .destination-item {
        margin-bottom: 20px;
    }
}
.quick-info {
    text-align: center;
}
.quick-info-table {
    width: 80%;
    margin: 0 auto 30px;
    border-collapse: collapse;
}
.quick-info-table th, .quick-info-table td {
        padding: 10px;
}
.quick-info-table th {
    background-color: var(--primary-color);
    color: white;
}
.quick-info-table td {
    background-color: #004aad14;
}
.quick-info-table tr {
    display: table-row;
    width: 100%;
}
.faqs-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.accordion-item {
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    background: #004aad29;
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: inherit;
}
.accordion-body {
    display: none;
    padding: 15px;
    background: #004aad14;
    font-size: 16px;
    text-align: left;
}
.accordion-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}
.accordion-header .accordion-icon {
    font-size: 22px;
    margin-left: 10px;
    font-weight: bold;
    color: var(--primary-color);
}
.accordion-body-content {
    padding-top: 10px;
}
.accordion-item.active .accordion-header {
    background: #004aad50;
}
.blog-section {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}
.blog-section {
    text-align: center;
    margin-bottom: 40px;
}
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}
.blog-post {
    display: block;
    text-align: left;
    text-decoration: none;
    color: inherit;
}
.blog-post h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin: 10px 0;
    flex-grow: 1;
    text-align: -webkit-auto;
}
.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
}
.view-in-detail {
    display: inline-block;
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}
.explore-tours h2 {
    font-size: 28px;
    margin-top: 20px;
    font-weight: bold;
}
.more-about h2 {
    font-size: 28px;
    margin-top: 40px;
    font-weight: bold;
}