/* 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: 10px;
    border: solid #d0d0d0 1px;
    border-radius: 20px;
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 0;
}

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

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

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


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

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

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