:root {
    --bg-color: #F5F5F7;
    --text-color: #4A4A4A;
    --text-white: #E2E2E5;
    --primary-color: #ED1C24;
    --about-us-color: #1A73E8;
    --areas-of-work-color: #4CAF50;
    --current-events-color: #FFA726;
    --new-case-law-color: #E53935;
    --new-case-law-bg: #e8e8ea;
    --primary-dark: #971115;
    --white: #ffffff;
    --shadow: rgba(0,0,0,0.1);
}

@font-face {
  font-family: 'Orbitron Regular';
  src: url('/fonts/Orbitron-Regular.ttf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* Biography Page Styles */

/* Profile Section */
.profile-section {
    padding: 40px 0;
}

.biography-page-section .container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;

}

.profile-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-image {
    width: 100%;
    max-width: 350px;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow);
}

.profile-info h1 {
    font-family: 'Orbitron Regular', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.profile-info .title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.areas-of-work h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}



.areas-of-work ul {
    list-style-type: disc;
    padding-left: 20px;
}

.areas-of-work ul li::marker {
    color: red;
}

.areas-of-work li {
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
}

.areas-of-work li:last-child {
    border-bottom: none;
}

/* Biography Section */
.biography-section {
    padding: 40px 0;
}

.biography-section h2 {
    font-family: 'Orbitron Regular', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.biography-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-item {
    margin-bottom: 15px;
    line-height: 1.6;
}

.bio-item strong {
    color: var(--text-color);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .biography-section h2 {
        font-size: 1.3rem;
    }
}