/* 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;
}

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

/* Sustainability Content */
.sustainability-content {
    padding: 80px 0;
}

/* Company Name */
.company-name {
    font-family: "Inter", Sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

/* Section Styles */
.content-section {
    margin-bottom: 10px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: "Inter", Sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

/* Principle Items */
.principle-item {
    margin-bottom: 2rem;
}

.principle-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

/* Lists */
.principle-list,
.fields-list,
.certifications-list {
    list-style-type: disc;
    padding-left: 2rem;
    line-height: 1.8;
}

.principle-list li,
.fields-list li,
.certifications-list li {
    margin-bottom: 0.5rem;
}

/* Special Text Styling */
.concrete-actions,
.among-them {
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Objectives Table */
.objectives-table {
    margin-top: 1.5rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.objectives-table thead {
    background: #6ec1e4;
    color: white;
}

.objectives-table th {
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.objectives-table td {
    padding: 1rem;
    vertical-align: top;
}

.objectives-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* Contact Section */
.contact-section {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 15px;
}

.contact-info {
    margin-top: 14px;
}

.contact-email {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-email a {
    color: #6ec1e4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #5ba7cc;
    text-decoration: underline;
}

/* Typography */
.sustainability-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.sustainability-content strong {
    font-weight: 700;
    color: #333;
}

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

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

    .text-container {
        padding: 20px;
    }

    .company-name {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .principle-title {
        font-size: 1.25rem;
    }

    .sustainability-content p {
        font-size: 1rem;
    }

    .objectives-table {
        font-size: 0.9rem;
    }

    .objectives-table th,
    .objectives-table td {
        padding: 0.75rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

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