/* --- 1. GLOBAL THEME & BASE TYPOGRAPHY --- */
.ns-rawls-theme {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    font-size: 20px; 
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. HEADLINES --- */
.ns-rawls-theme h2 {
    font-size: 2.2rem !important; 
    font-weight: 700;
    text-transform: none; 
    color: #000;
    margin: 0 0 25px 0 !important;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* --- 3. HERO SECTION --- */
.hero-intro { background-color: #f4f4f4; padding: 60px 0; border-bottom: 1px solid #ddd; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-text { flex: 1; min-width: 0; } 
.hero-text h1 { font-size: 3.5rem !important; font-weight: 700; text-transform: none; line-height: 1.1; margin: 0 0 20px 0; letter-spacing: -1px; }

.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-photo { 
    width: 100%; 
    max-width: 600px; 
    height: auto; 
    box-shadow: 15px 15px 0px #cc0000; 
    border: 1px solid #ddd; 
}

.cta-group { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; margin-top: 25px; width: 100%; }
.btn-red, .btn-black, .btn-outline { 
    text-decoration: none !important; padding: 14px 22px; font-weight: 700; 
    text-transform: uppercase; display: inline-block; transition: 0.3s; 
    font-size: 15px; border: 2px solid transparent; white-space: nowrap; flex: 0 1 auto;
}
.btn-red { background: #cc0000; color: #fff !important; }
.btn-black { background: #000; color: #fff !important; }
.btn-outline { background: transparent; color: #000 !important; border: 2px solid #000; }

/* --- 4. STATISTICS SECTION --- */
.stats-bar { background: #ffffff; padding: 25px 0; border-bottom: 1px solid #eee; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat-item strong { display: block; font-size: 2.2rem; color: #cc0000; line-height: 1; margin-bottom: 5px; }
.stat-item span { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; font-weight: 700; }

/* --- 5. TWO-COLUMN BODY & PRACTICE AREA GRID --- */
.flex-row { display: flex; gap: 40px; margin-top: 30px; align-items: flex-start; }
.flex-col { flex: 1; }
.gray-box { background: #f9f9f9; padding: 30px !important; border-top: 6px solid #000; }
.gray-box h3 { font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; margin-top: 0 !important; }

.career-path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.path-badge { 
    background: #ffffff; padding: 12px 15px; border-left: 5px solid #cc0000; 
    font-weight: 700; font-size: 17px; color: #333; 
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05); display: flex; align-items: center; 
}

/* --- 6. CONCENTRATIONS --- */
.concentrations-section { padding: 40px 0 20px 0 !important; background: #fff; text-align: center; }
.concentrations-section h2 { margin-top: 0 !important; margin-bottom: 30px !important; }
.concentrations-grid { display: flex; gap: 20px; justify-content: center; margin-top: 20px; }
.concentration-card { 
    flex: 1; min-width: 280px; padding: 30px 25px; background: #fafafa; 
    border: 1px solid #eee !important; text-align: left; transition: all 0.3s ease; 
}
.concentration-card:hover { border: 1.5px solid #cc0000 !important; transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.concentration-card h3 { font-size: 1.5rem !important; font-weight: 600 !important; text-transform: none; color: #000 !important; margin: 0 0 15px 0; line-height: 1.3; }
.concentration-card p { font-size: 18px; line-height: 1.6; color: #444; }

/* --- 7. CONTACT & FOOTER (AGRESSIVE PADDING REDUCTION) --- */
.contact-section { 
    padding: 0 0 60px 0 !important; /* Removed top padding entirely */
}
.contact-grid { 
    display: flex; 
    gap: 25px; 
    margin-top: 0px !important; /* Removed margin above grid */
}
.contact-card { 
    flex: 1; 
    padding: 30px; 
    background: #fff; 
    border: 1px solid #eee; 
    border-left: 6px solid #cc0000; 
    font-size: 18px; 
}
.contact-card h4 { text-transform: uppercase; color: #cc0000; font-weight: 700; margin: 0 0 15px 0; font-size: 1.2rem; }

.footer-cta-area { background-color: #f4f4f4; padding: 60px 0; text-align: center; border-top: 1px solid #ddd; margin-top: 40px; }
.large-btn { font-size: 1.2rem; padding: 18px 45px !important; margin-top: 20px; }

/* --- 8. MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero-flex { flex-direction: column-reverse; text-align: center; }
    .hero-photo { max-width: 100%; }
    .flex-row, .concentrations-grid, .contact-grid { flex-direction: column; }
    .hero-text h1 { font-size: 2.5rem !important; }
    .cta-group { flex-wrap: wrap; justify-content: center; }
}