/* Global Styles */
:root {
    --primary-color: yellowgreen;
    --primary-dark: #7a9f1f;
    --secondary-color: #333;
    --light-color: #f4f4f4;
    --dark-color: #222;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://www.districtofcolumbiataxattorney.com/wp-content/uploads/2020/03/i-ZhqFVnG-X3.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* Case Overview */
.case-overview {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-color);
}

.case-overview h2 {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.case-overview h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 25%;
}

.case-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.case-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 30%;
    min-width: 250px;
    margin: 15px;
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-card h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* Defendant Profile */
.defendant-profile {
    padding: 80px 0;
}

.profile-content {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.profile-image {
    flex: 1;
    padding-right: 40px;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.profile-text {
    flex: 1;
}

.profile-text p {
    margin-bottom: 20px;
}

/* Quote Section */
.quote-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

blockquote:before,
blockquote:after {
    content: '"';
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
}

blockquote:before {
    top: -20px;
    left: -40px;
}

blockquote:after {
    bottom: -60px;
    right: -40px;
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://www.districtofcolumbiataxattorney.com/wp-content/uploads/2020/03/i-ZhqFVnG-X3.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Companies List */
.companies-list {
    padding: 80px 0;
}

.company-card {
    background: white;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateX(10px);
}

.company-card.highlighted {
    background-color: rgba(154, 205, 50, 0.1);
    border-left-width: 8px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
    margin-top: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50px;
}

.timeline-event {
    position: relative;
    margin-bottom: 40px;
    padding-left: 100px;
}

.event-date {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    width: 80px;
    text-align: center;
}

.event-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Victims Page Styles */
.victims-profiles {
    padding: 80px 0;
}

.victim-card {
    background: white;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.victim-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.victim-amount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
}

.victim-card h2 {
    margin-right: 120px;
    color: var(--primary-color);
}

.victim-card .quote {
    font-style: italic;
    padding: 15px;
    background: rgba(154, 205, 50, 0.1);
    border-left: 3px solid var(--primary-color);
    margin: 20px 0;
}

/* Case Details */
.case-details {
    padding: 60px 0;
    background-color: var(--light-color);
}

.exploitation-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.point {
    flex: 0 0 30%;
    min-width: 300px;
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.point h3 {
    color: var(--primary-color);
}

/* Verdict Banner */
.verdict-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.verdict-banner ul {
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.verdict-banner li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.verdict-banner li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .profile-content {
        flex-direction: column;
    }
    
    .profile-image {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .case-card {
        width: 100%;
    }
    
    .point {
        flex: 0 0 100%;
    }
}