.section-title {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: left;
}

/* Venue section */
.venue-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.venue-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.venue-image img {
    width: 100%;
    height: auto;
    display: block;
}

.venue-details {
    flex: 1;
    min-width: 300px;
}

.venue-details h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.venue-details p {
    margin-bottom: 15px;
}

/* Visa section */
.visa-info {
    line-height: 1.8;
}

.visa-step {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.visa-step h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.visa-step ul {
    padding-left: 20px;
    margin: 10px 0;
}

/* Hotels section */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.hotel-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hotel-image {
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-details {
    padding: 20px;
}

.hotel-name {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.hotel-info {
    margin-bottom: 15px;
    color: var(--text-light);
}

.hotel-info i {
    margin-right: 8px;
    color: var(--primary);
    width: 20px;
}

.hotel-info a {
    color: var(--text-light);
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hotel-info a:hover {
    color: var(--secondary);
    background-color: rgba(230, 57, 70, 0.1);
}