Stokman Safaris FAQ
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f9f9f9;
}
.faq-section {
max-width: 900px;
margin: 40px auto;
padding: 20px;
}
.faq-title {
text-align: center;
font-size: 2rem;
color: #9e391c;
margin-bottom: 25px;
font-weight: bold;
}
.faq-item {
border-bottom: 1px solid #ddd;
}
.faq-question {
background: #fff;
color: #9e391c;
cursor: pointer;
padding: 15px 20px;
font-size: 1.1rem;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s ease;
}
.faq-question:hover {
background: #f2e6e2;
}
.faq-answer {
max-height: 0;
overflow: hidden;
background: #fff;
padding: 0 20px;
transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
margin: 15px 0;
color: #333;
line-height: 1.5;
}
.faq-item.active .faq-answer {
max-height: 200px;
padding: 15px 20px;
}
.faq-item.active .faq-question::after {
content: "-";
font-size: 1.5rem;
}
.faq-question::after {
content: "+";
font-size: 1.5rem;
}
/* Responsive */
@media (max-width: 768px) {
.faq-title {
font-size: 1.6rem;
}
.faq-question {
font-size: 1rem;
}
}
Frequently Asked Questions
1. What makes Stokman Safaris unique?
We specialize in personalized safari experiences across Kenya and beyond, offering professional guides, luxury vehicles, and tailor-made itineraries.
2. Do you organize both group and private tours?
Yes, we arrange both group safaris for budget-friendly adventures and exclusive private tours for personalized luxury experiences.
3. What is included in your safari packages?
Our packages often include transport, park entry fees, game drives, accommodation, and meals. Flight and extra activities can be arranged on request.
4. Can you help with hotel bookings and flights?
Yes, besides safaris we also assist with hotel reservations, domestic flights, airport transfers, and visa guidance to make your trip seamless.
5. Are your safaris family-friendly?
Absolutely! We have special packages and kid-friendly itineraries ensuring families enjoy a safe and memorable safari adventure together.
6. How do I confirm a booking?
You can confirm your booking by making a deposit through our secure payment options. The balance is payable before the safari starts.
7. What happens if I need to cancel?
We have a flexible cancellation policy. Refunds depend on the time of cancellation, but we always strive to provide fair options for our clients.
const faqItems = document.querySelectorAll(".faq-item");
faqItems.forEach(item => {
item.querySelector(".faq-question").addEventListener("click", () => {
faqItems.forEach(i => i.classList.remove("active"));
item.classList.toggle("active");
});
});