.nepal-heritage-sites {
    /* Base styles for the container */
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nepal-heritage-sites h1 {
    color: #2c3e50;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}

.nepal-heritage-sites h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.nepal-heritage-sites h3 {
    color: #2980b9;
    font-size: 1.5em;
    margin-top: 20px;
}

.nepal-heritage-sites p {
    color: #333;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.nepal-heritage-sites em {
    font-style: italic;
    color: #e74c3c;
}

.nepal-heritage-sites a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nepal-heritage-sites a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .nepal-heritage-sites {
        padding: 10px;
    }
    
    .nepal-heritage-sites h1 {
        font-size: 2em;
    }
    
    .nepal-heritage-sites h2 {
        font-size: 1.6em;
    }

    .nepal-heritage-sites h3 {
        font-size: 1.3em;
    }
}



.suggestation-container {
    background-color: #f9f9f9;
    padding: 20px 10px;
    margin: 15px auto;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 100%;
}

.suggestion-header {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 12px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.suggestion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.suggestion-link {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.suggestion-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.suggestion-image-container {
    flex: 0 0 80px; /* Fixed image size */
    margin-right: 15px;
    overflow: hidden;
    border-radius: 6px;
}

.suggestion-image {
    width: 80px; /* Fixed width for image */
    height: 80px; /* Fixed height for image */
    object-fit: cover;
    border-radius: 6px;
}

.suggestion-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suggestion-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    padding-right: 12px;
    line-height: 1.3;
}

.suggestion-item p {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    line-height: 1.4;
}

/* Optional: Responsive Design for smaller screens */
@media (max-width: 768px) {
    .suggestation-container {
        padding: 15px 8px;
    }

    .suggestion-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px;
    }

    .suggestion-image-container {
        flex: 0 0 80px;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .suggestion-text {
        flex: 1;
        padding-right: 0;
    }

    .suggestion-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .suggestation-container {
        padding: 12px 6px;
    }

    .suggestion-header {
        font-size: 18px;
    }

    .suggestion-title {
        font-size: 14px;
    }

    .suggestion-item {
        padding: 6px;
    }

    .suggestion-image-container {
        flex: 0 0 70px; /* Adjusted image size */
    }
}
