:root {
    --primary-color: #0a2d4d;
    --secondary-color: #d4af37;
    --dark-text: #333333;
    --light-text: #ffffff;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #f5f7fb; /* Added a light gray background for contrast */
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; }
h1, h2, h3, h4 { color: var(--primary-color); margin: 0 0 20px 0; text-align: center; }
h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.5em; }

/* --- Buttons --- */
.cta-button { display: inline-block; background-color: var(--secondary-color); color: var(--light-text) !important; padding: 12px 28px; font-size: 1.1em; font-weight: bold; text-decoration: none; border-radius: 5px; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.cta-button:hover { background-color: #b89a2e; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); text-decoration: none; }

/* --- Header Bar --- */
.header-bar { background-color: var(--background-white); padding: 10px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-bar-content { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.dl-header-logo { display: block; height: 50px; width: auto; }
.header-title { color: var(--dark-text); font-size: 1.5rem; font-weight: 800; }
.header-right-items { display: flex; align-items: center; gap: 15px; }
.header-bar .call-now-button { white-space: nowrap; font-size: 0.9rem; padding: 0.55rem 1.1rem; }

/* --- Language Toggle --- */
.lang-toggle { cursor: pointer; }
.lang-toggle input { display: none; }
.lang-toggle .lang-flag { width: 30px; height: auto; display: block; border-radius: 4px; border: 1px solid #ddd; }
html[lang="en"] .lang-flag-en { display: none; }
html[lang="es"] .lang-flag-es { display: none; }

/* --- Hero Section (Main Page) --- */
.hero { position: relative; padding: 120px 0; text-align: center; color: var(--light-text); overflow: hidden; background-color: #000; }
#bg-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 1; object-fit: cover; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 45, 77, 0.6); z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: 0 20px; }
.hero h1 { color: var(--light-text); }

/* --- Main Content Sections --- */
.attorney-section, .testimonials-section, .why-us-section, .how-it-works-section, .faq-section { background-color: var(--background-light); }
.contact-section { background-color: var(--primary-color); }

/* --- Footer --- */
footer { background-color: #222; color: #c7c7c7; text-align: center; padding: 25px 0; font-size: 1rem; }
footer a { color: var(--secondary-color); text-decoration: none; }
.nap-block { border-bottom: 1px solid #555; padding-bottom: 15px; margin-bottom: 15px; }
.nap-block p { margin: 5px 0; color: #fff; font-weight: bold; }

/* --- Modals --- */
.modal { position: fixed; inset: 0; display: none; z-index: 2000; }
/* ... (Other modal styles remain the same) ... */

/* --- NEW: ABOUT ME PAGE STYLES --- */
.about-page-main { padding: 40px 0; }
.about-hero { display: grid; grid-template-columns: 1fr 0.8fr; gap: 30px; align-items: flex-start; margin-bottom: 40px; }
.about-identity { background: var(--background-white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.07); }
.about-identity h1 { text-align: left; font-size: 2.2em; margin-bottom: 5px; }
.about-identity .subtitle { text-align: left; margin-top: 0; font-size: 1.2rem; color: #555; }
.about-identity .meta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 20px; font-size: 1rem; }
.about-identity .meta a { color: var(--primary-color); font-weight: 600; }
.about-identity #licenseLine { text-align: left; font-weight: bold; margin-top: 20px; }
.about-identity .cta-row { text-align: left; margin-top: 20px; }
.about-photo-card { background: var(--background-white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.07); }
.portrait-wrap { margin-bottom: 20px; }
.portrait { width: 100%; height: auto; border-radius: 8px; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; text-align: center; }
.kpi .n { font-weight: 800; font-size: 1.5rem; color: var(--primary-color); }
.kpi .muted { font-size: 0.9rem; }
.bio-content { max-width: 900px; margin: 0 auto; }
.bio-section { background: var(--background-white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.07); margin-bottom: 30px; text-align: left;}
.bio-section h2 { text-align: left; }
.styled-list { list-style: none; padding-left: 0; }
.styled-list li { padding-left: 25px; position: relative; margin-bottom: 10px; }
.styled-list li::before { content: '✓'; color: var(--secondary-color); position: absolute; left: 0; font-weight: bold; }
.chevron { background: #f0f0f0; border: 1px solid #ddd; border-radius: 5px; padding: 10px 15px; font-weight: bold; cursor: pointer; margin-top: 15px; }
.hidden { display: none; }

/* Mobile adjustments for About Page */
@media (max-width: 900px) {
    .about-hero { grid-template-columns: 1fr; }
    .header-bar-content { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .header-title { order: -1; width: 100%; text-align: center; font-size: 1.3rem; }
}