/* --- PRIVACY POLICY SPECIFIC OVERRIDES --- */

/* Adjusting hero for text-heavy page */
.hero.privacy-hero {
    height: auto;
    padding: 80px 0 40px 0;
}

/* Ensuring lists match the design system spacing */
ol, ul {
    margin-bottom: 1rem;
    color: var(--text-main);
}

ol li, ul li {
    margin-bottom: 1.2rem;
}

/* Example text styling */
em {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Section spacing */
section {
    padding: 40px 0;
}

/* Typography for policy headings */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

/* Specific card adjustments for text blocks */
.project-card .project-info h3 {
    margin-top: 0.5rem;
    font-size: 1.4rem;
}

/* Footer & Legal Notes */
.privacy-note {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact block centering */
.contact-highlight {
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

/* Responsive tweaks for the grid on legal pages */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}

/* Reset list padding to align with parent text */
.project-info ul, 
.project-info ol,
section ul,
section ol {
    padding-left: 1.2rem; /* Enough room for the bullet/number to sit inside the alignment */
    margin-left: 0;
}

/* Ensure list items don't have extra indentation */
li {
    padding-left: 0;
}

/* Specific fix for the Contact list in the card */
.contact-list {
    list-style: none;
    padding-left: 0 !important; /* Remove indentation for non-bulleted lists */
    margin-top: 1rem;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

/* Maintain font consistency in lists */
li strong {
    color: var(--text-main);
}

.project-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Optional: if you want the card to stay exactly as it looks in its default state */
.project-card {
    transition: none !important;
    cursor: default; /* Optional: changes cursor from 'pointer' to standard arrow */
}

/* Disables hover for social boxes if you are using them here */
.social-box:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: var(--card-bg) !important;
}