/* General section styling */
.open_data-section {
    padding: 40px 0;
    margin-top: 20px; /* Add some space from navbar */
    background-color: var(--background-light); /* Light background for the section */
}

/* Main content wrapper, similar to .privacy-policy-content */
.open_data-content {
    max-width: 960px; /* Adjust as needed to match your site's container width */
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff; /* White background for the content area, no direct variable in main.css */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Meta information (e.g., view count) */
.open_data-meta {
    text-align: right;
    margin-bottom: 20px;
    color: var(--text-color);
}
/* Main section title, similar to .section-title in privacy-policy */
.section-title {
    font-size: 2.5rem; 
    color: var(--ubru-pink);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px; 
    background-color: var(--ubru-pink); /* Primary color for underline */
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
}

/* Image wrapper styling */
.open_data-image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.open-data-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Styling for each policy block */
.policy-block {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 5px; 
    background-color: var(--background-light); /* Very light background */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.policy-heading {
    font-size: 1.6rem;
    color: var(--ubru-pink); /* Darker blue for headings */
    margin-bottom: 15px;
    border-bottom: 2px solid var(--ubru-pink); /* Underline effect */
    padding-bottom: 5px;
}

.policy-block ul {
    list-style: none; /* Remove default bullet points */ 
    padding-left: 0;
}

.policy-block ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #343a40;
}

.policy-block ul li a {
    color: var(--ubru-pink); /* Link color */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.policy-block ul li a:hover {
    color: var(--hover-color); /* Darker blue on hover */
    text-decoration: underline;
}