body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

.top-header {
    background: #1e9e47;
    color: white;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header h1 {
    margin: 0;
}

.top-header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.top-header nav a:hover {
    text-decoration: underline;
}

.page-title {
    text-align: center;
    padding: 40px 20px;
    background: #e9f7ed;
}

.page-title h2 {
    color: #1e9e47;
    font-size: 32px;
}

.featured {
    padding: 40px 20px;
}

.featured h3 {
    color: #1e9e47;
    text-align: center;
    margin-bottom: 20px;
}

.featured-box {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 2px solid #1e9e47;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

.featured-box img {
    width: 45%;
    height: 330px;
    object-fit: cover;
    border-radius: 10px;
}

.featured-info {
    width: 55%;
}

.featured-info h2 {
    color: #1e9e47;
}

.featured-info ul {
    list-style: none;
    padding: 0;
}

.featured-info ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.featured-info button {
    padding: 12px 18px;
    background: #1e9e47;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.featured-info button:hover {
    background: #187c38;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
    padding: 40px;
}

.destination-card {
    border: 2px solid #1e9e47;
    border-radius: 12px;
    background: white;
    text-align: center;
    padding-bottom: 20px;
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.destination-card h3 {
    color: #1e9e47;
    margin: 12px 0 6px;
}

.destination-card p {
    color: #555;
    padding: 0 10px;
    font-size: 14px;
}

.destination-card button {
    background: #1e9e47;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    width: 80%;
    cursor: pointer;
}

.destination-card button:hover {
    background: #187c38;
}

.reviews {
    background: #e9f7ed;
    padding: 40px 20px;
    text-align: center;
}

.reviews h2 {
    color: #1e9e47;
}

.review-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    border: 2px solid #1e9e47;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: left;
}

.review-card h4 {
    margin-top: 0;
    color: #1e9e47;
}

.review-card p {
    font-size: 14px;
}
