/* Hero Section - matching MICE/Privacy 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;
}

/* Terms Content Styles */
.terms-content {
    padding: 80px 0;
}

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

/* Strong text within paragraphs */
.content-section p strong {
    font-weight: 600;
}

/* Address styling */
.terms-content address {
    font-style: normal;
    line-height: 1.8;
}

/* Links */
.terms-content a {
    color: #6ec1e4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #5ba7cc;
    text-decoration: underline;
}

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

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

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

    .terms-content h2 {
        font-size: 1.5rem;
    }

    .content-section p {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .terms-content {
        padding: 40px 0;
    }

    .content-section {
        margin-bottom: 2rem;
    }
}

/* Print styles */
@media print {

    .terms-content {
        padding: 0;
    }

    .content-section {
        page-break-inside: avoid;
    }
}