body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
color: #333;
background-color: #f8f8f8;
}

.hero {
background: url('https://source.unsplash.com/1600x600/?travel,nature') center/cover no-repeat;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
position: relative;
}

.hero::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.4);
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 3em;
margin-bottom: 0.3em;
}

.btn {
padding: 10px 20px;
background: #f26a2e;
color: white;
text-decoration: none;
border-radius: 5px;
}

.intro, .gallery, .testimonials, .video-section {
padding: 50px 20px;
text-align: center;
}

.container {
max-width: 800px;
margin: auto;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin-top: 30px;
}

.gallery-grid img {
width: 100%;
height: auto;
border-radius: 10px;
}

.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 800px;
margin: 30px auto;
}

.video-container iframe {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
}

.testimonial-cards {
display: flex;
flex-direction: column;
gap: 20px;
max-width: 700px;
margin: auto;
}

.card {
background: white;
padding: 20px;
border-left: 5px solid #f26a2e;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.footer {
background: #333;
color: white;
text-align: center;
padding: 15px;
}