/* Hero Section - matching MICE page style */
.hero-section {
    position: relative;
    background-image: url('https://quimbaya-tours.com/wp-content/uploads/2023/11/pexels-rafael-guajardo-604661-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 30px;
    width: 100%;
    border: solid #d0d0d0 1px;
    border-radius: 20px;
}

/* Privacy Content Styles */
.privacy-content {
    padding: 80px 0;
}

.privacy-content h2 {
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    text-decoration: underline;
}

.privacy-content address {
    font-style: normal;
    line-height: 1.8;
}

.privacy-content a {
    color: #333;
}

/* Browser Instructions */
.browser-instructions {
    margin-top: 2rem;
}

.browser-instructions h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.browser-instructions ol {
    margin-bottom: 1.5rem;
}

/* Alert Styles */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .privacy-content .ps-3 {
        padding-left: 1rem !important;
    }
}