body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    background-color: #f7f9fc; /* Light gray-blue background */
    text-align: center;
}

/* Home Section */
.home {
    max-width: 1200px; /* Max width for the home section */
    margin: 0 auto; /* Center horizontally */
    padding: 20px; /* Padding around the section */
}

/* Header Styles */
h1 {
    font-size: 2.5em; /* Large heading size */
    margin-bottom: 10px;
}

p {
    font-size: 1.2em; /* Paragraph font size */
    margin-bottom: 20px;
}

/* Call to Action Button */
.cta-button {
    padding: 15px 30px;
    background-color: #27ae60; /* Green button */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition */
}

.cta-button:hover {
    background-color: #219150; /* Darker green on hover */
}

/* Highlights Section */
.highlights {
    margin-top: 40px; /* Space above section */
}

.highlights h2 {
    font-size: 2em; /* Section heading size */
}

.adventure-cards {
    display: grid; /* Use grid layout for cards */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive columns */
    gap: 20px; /* Space between cards */
    margin-top: 20px; /* Space above cards */
}

.card {
    background: white; /* White background for cards */
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
    overflow: hidden; /* Prevent overflow */
    transition: transform 0.3s; /* Transition effect */
}

.card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.card img {
    width: 100%; /* Full width image */
    height: 150px; /* Fixed height for images */
    object-fit: cover; /* Cover area without distortion */
}

.card-content {
    padding: 15px; /* Padding inside card */
}

.explore-button {
    display: block;
    margin-top: 10px; /* Space above button */
    padding: 10px;
    background-color: #007bff; /* Blue button */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition */
}

.explore-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


/* Responsive Styles */
@media (max-width: 768px) {

    h1 {
        font-size: 2em; /* Adjust heading size */
    }

    p {
        font-size: 1em; /* Adjust paragraph size */
    }

    .card {
        margin: 0 auto; /* Center cards */
    }

    .explore-button {
        width: 100%; /* Full width button */
    }
}

@media (max-width: 480px) {
    .newsletter input[type="email"] {
        width: 100%; /* Full width input on small screens */
    }
}

    .testimonials h3 {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between testimonials */
}

.testimonial {
    background-color: #ecf6fd;
    padding: 20px;
    border-radius: 5px;
    margin: 10px;
    max-width: 300px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    color: #34495e;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #2c3e50;
}