.tour-details {
    padding: 120px 0 40px;
    background-color: #f5f5f5;
}

.details-content {
    display: flex;
    gap: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tour-images {
    flex: 1;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.tour-info {
    flex: 1;
}

.tour-info h1 {
    margin: 0 0 15px 0;
    color: #333;
}

.duration {
    color: #666;
    margin-bottom: 20px;
}

.price-section {
    margin: 20px 0;
    font-size: 1.25rem;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.price-section .label {
    font-weight: 600;
    color: #333;
}

.price-section .price {
    color: #2ecc71;
    font-weight: bold;
    margin-left: 10px;
}

.description-section {
    margin: 25px 0;
    line-height: 1.6;
    color: #555;
}

.description-section h3 {
    color: #333;
    margin-bottom: 15px;
}

.highlights-section {
    margin: 30px 0;
}

.highlights-section h3 {
    color: #333;
    margin-bottom: 15px;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.highlights-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.highlights-list li i {
    color: #2c5282;
    margin-right: 10px;
}

.booking-section {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.book-now-btn, .contact-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-btn {
    background-color: #2ecc71;
    color: white;
}

.book-now-btn:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.contact-btn {
    background-color: #ecf0f1;
    color: #333;
}

.contact-btn:hover {
    background-color: #bdc3c7;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .details-content {
        flex-direction: column;
    }
    
    .main-image {
        height: 300px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .book-now-btn, .contact-btn {
        width: 100%;
    }
}
