/* CSS Custom Properties - Extracted from repeated values for CLAUDE.md compliance */
:root {
    /* Colors - Extracted from 67 instances of repeated color values */
    --color-primary: #155dfc;
    --color-secondary: #ffffff;
    --color-accent: #60a5fa;
    --color-text-dark: #1a1a1a;
    --color-text-gray: #374151;
    --color-text-light: #6b7280;
    --color-background-light: #f9fafb;
    --color-background-dark: #1f2937;
    --color-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --color-success: #22c55e;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    
    /* Typography */
    --font-family-primary: Arial, Helvetica, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --line-height-tight: 1.1;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    --line-height-loose: 1.7;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Breakpoints for responsive design */
    --breakpoint-sm: 480px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1200px;
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Z-index scale */
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-fixed: 30;
    --z-modal: 40;
    --z-popover: 50;
    --z-tooltip: 60;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-gray);
    background-color: var(--color-secondary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: var(--color-background-dark);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-5xl); line-height: var(--line-height-tight); }
h2 { font-size: var(--font-size-4xl); line-height: var(--line-height-tight); }
h3 { font-size: var(--font-size-3xl); line-height: var(--line-height-normal); }
h4 { font-size: var(--font-size-2xl); line-height: var(--line-height-normal); }
h5 { font-size: var(--font-size-xl); line-height: var(--line-height-normal); }
h6 { font-size: var(--font-size-base); line-height: var(--line-height-relaxed); }

p {
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-loose);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Utility Classes */
.container {
    max-width: var(--breakpoint-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-blue { color: var(--color-accent); }
.text-white { color: var(--color-secondary); }
.text-gray { color: var(--color-text-light); }

.bg-light { background-color: var(--color-background-light); }
.bg-dark { background-color: var(--color-background-dark); }
.bg-blue { background-color: var(--color-primary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--color-secondary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.btn-light {
    background-color: #ffffff;
    color: #1e40af;
}

.btn-light:hover {
    background-color: #f3f4f6;
    color: #1e40af;
}

/* Cards */
.card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: #f9fafb;
}

.section-dark {
    background-color: #1f2937;
    color: #ffffff;
}

.section-dark h2 {
    color: #ffffff;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 0;
}

.section-link {
    color: #2563eb;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.section-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-top: 4rem;
}

.section-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 1rem 0 0 0;
}

/* Header Styles */
.header {
    background-color: #1e3a8a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 0.5rem 0;
    border-bottom: 1px solid #3b82f6;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-top-right {
    font-weight: 600;
    font-size: 1.125rem;
    color: #ffffff;
}

.header-top-right a {
    color: #ffffff;
}

.header-top-right a:hover {
    color: #ffffff;
}

.header-main {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-content > .nav:first-of-type {
    margin-left: auto;
    margin-right: 1rem;
}

.header-logo img {
    height: 7rem;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-item {
    position: relative;
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #ffffff;
}

.nav-item > a {
    color: #ffffff;
}

.nav-item > a:hover {
    color: #ffffff;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #ffffff;
    min-width: 220px;
    width: max-content;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background-color: #dbeafe;
    color: #1e40af;
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.nav-dropdown a:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.nav-dropdown a:first-child:hover {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.nav-dropdown a:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.nav-dropdown a:last-child:hover {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.nav-dropdown-narrow {
    min-width: 140px;
    width: 140px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav-item {
    display: block;
    padding: 1rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 500;
}

.mobile-nav-item:hover {
    background-color: #f9fafb;
    color: #1e40af;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('../assets/images/charleston_colorful.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 12rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
}



.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    space-y: 2rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.hero-highlight p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

.hero-cta {
    margin-bottom: 1rem;
}

.hero-note {
    opacity: 0.8;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-specialties {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-specialties h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-specialties ul {
    list-style: none;
    margin-bottom: 1rem;
}

.hero-specialties li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.hero-specialties li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: #60a5fa;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.hero-link {
    color: #93c5fd;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: color 0.2s ease;
}

.hero-link:hover {
    color: #dbeafe;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    transform: rotate(3deg);
    opacity: 0.6;
}

.image-wrapper {
    position: relative;
    background-color: #ffffff;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    border-radius: 0.75rem;
}

.about-content .card {
    border: 1px solid #3b82f6;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
}

.about-content h4 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.about-content .content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-content .content p:first-child {
    font-weight: 600;
}

.signature {
    text-align: center;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.attorney-info {
    text-align: center;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.attorney-info h3 {
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.attorney-title {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid #3b82f6;
    font-size: 0.875rem;
}

.about-cta {
    text-align: center;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Practice Areas Section */
.practice-tabs {
    margin-bottom: 2.5rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    color: #6b7280;
    cursor: pointer;
}

.tab-btn:hover {
    background-color: #dbeafe;
    color: #1e40af;
}

.tab-btn.active {
    background-color: #1e40af;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-content {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.practice-area-content {
    max-width: 1000px;
    margin: 0 auto;
}

.practice-area-content h3 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.practice-area-content > p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.practice-features {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.practice-features h4 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.practice-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
}

.practice-features li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.7;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.practice-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #1e40af;
    border-radius: 50%;
}

.practice-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.case-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    color: inherit;
}

.case-amount {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.case-item:hover .case-amount {
    color: #1d4ed8;
}

.case-category {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #3b82f6;
    display: inline-block;
    margin-bottom: 1rem;
}

.case-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.case-link {
    color: #1e40af;
    font-weight: 500;
    transition: color 0.3s ease;
}

.case-item:hover .case-link {
    color: #1d4ed8;
}

.disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-featured {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.benefits-featured h3 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefits-featured p {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Areas Served page - 3 column benefits grid */
.section.bg-light .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
}

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    line-height: 1.7;
    margin-bottom: 0;
    color: #000000;
}

/* Practice Area Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: none;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.benefits-list .benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-bullet {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

/* Practice Area Qualification List */
.qualification-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: none;
}

.qualification-list .qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.qualification-list .qualification-item:last-child {
    margin-bottom: 0;
}

.qualification-bullet {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.qualification-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.benefits-cta {
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefits-cta h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.benefits-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-intro {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.reviews-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.google-icon {
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 25%, #fbbc05 50%, #34a853 75%, #ea4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: bold;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.rating-count {
    color: #6b7280;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    background-color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    flex-shrink: 0;
}

.review-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-rating .stars {
    font-size: 1rem;
}

.review-text {
    line-height: 1.7;
    margin-bottom: 0;
}

.reviews-cta {
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.reviews-cta h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.reviews-cta p {
    margin-bottom: 1.5rem;
}

/* Areas Served Section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.area-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.area-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.area-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.area-type {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.area-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-item {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: inherit;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 12rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-featured {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-item:hover .blog-title {
    color: #3b82f6;
}

.blog-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-hashtag {
    background-color: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.blog-hashtag:hover {
    background-color: #dbeafe;
    color: #1e40af;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-read-more {
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-item:hover .blog-read-more {
    color: #1e40af;
}

.blog-author {
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-cta {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.blog-cta p {
    margin-bottom: 1.5rem;
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    background-image: url('../assets/images/charleston_colorful.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.footer-content {
    position: relative;
    padding: 4rem 0;
}

.footer-top {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 6rem;
    width: auto;
    margin: 0 auto;
}


.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    color: #93c5fd;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #93c5fd;
}

.footer-contact {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer-content {
    background: rgba(217, 119, 6, 0.2);
    border: 1px solid rgba(217, 119, 6, 0.3);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.footer-disclaimer h4 {
    font-size: 1.125rem;
    color: #fcd34d;
    margin-bottom: 0.75rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-social a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #93c5fd;
}

.footer-credit {
    border-top: 1px solid #4b5563;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-credit a {
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem;
    }
    
    .hero-specialties ul {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-top-left {
        justify-content: center;
    }
    
    .tabs-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .tab-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cases-grid,
    .blog-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        grid-template-columns: 1fr;
    }
    
    .about-credentials-image {
        max-width: 240px;
    }
}

/* Hero Section Variations */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    background-image: url('../assets/images/charleston_colorful.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
}

.hero-section .hero-content {
    position: relative;
    z-index: 10;
}

/* Base Practice Area Hero Background */
.hero-practice-area {
    background-image: url('../assets/images/Sweeny-20.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
}

/* Individual Practice Area Background Images - REPLACE WITH UNIQUE IMAGES FOR EACH PRACTICE AREA */

/* Auto Accident Background */
.hero-section.hero-auto-accident {
    background-image: url('../assets/images/auto-accident-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-auto-accident::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-auto-accident .container {
    position: relative;
    z-index: 2;
}

/* Motorcycle Accident Background */
.hero-section.hero-motorcycle-accident {
    background-image: url('../assets/images/motorcycle-accident-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-motorcycle-accident::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-motorcycle-accident .container {
    position: relative;
    z-index: 2;
}

/* Large Truck Accident Background */
.hero-section.hero-truck-accident {
    background-image: url('../assets/images/truck-accident-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-truck-accident::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-truck-accident .container {
    position: relative;
    z-index: 2;
}

/* Workplace Injury Background */
.hero-section.hero-workplace-injury {
    background-image: url('../assets/images/workplace-injury-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-workplace-injury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-workplace-injury .container {
    position: relative;
    z-index: 2;
}

/* Construction Site Injury Background */
.hero-section.hero-construction-injury {
    background-image: url('../assets/images/construction-injury-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-construction-injury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-construction-injury .container {
    position: relative;
    z-index: 2;
}

/* Unsafe Product Injury Background */
.hero-section.hero-product-injury {
    background-image: url('../assets/images/product-injury-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-product-injury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-product-injury .container {
    position: relative;
    z-index: 2;
}

/* Unsafe Property Injury Background */
.hero-section.hero-property-injury {
    background-image: url('../assets/images/property-injury-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-property-injury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-property-injury .container {
    position: relative;
    z-index: 2;
}

/* Bad Faith Insurance Background */
.hero-section.hero-bad-faith-insurance {
    background-image: url('../assets/images/bad-faith-insurance-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-bad-faith-insurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-bad-faith-insurance .container {
    position: relative;
    z-index: 2;
}

/* Boating Injury Background */
.hero-section.hero-boating-injury {
    background-image: url('../assets/images/boating-injury-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-boating-injury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-boating-injury .container {
    position: relative;
    z-index: 2;
}

/* Wrongful Death Background */
.hero-section.hero-wrongful-death {
    background-image: url('../assets/images/wrongful-death-hero.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 12rem 0;
    position: relative;
}

.hero-section.hero-wrongful-death::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-wrongful-death .container {
    position: relative;
    z-index: 2;
}

/* Practice Areas Page Background */
.hero-section.hero-practice-areas {
    background-image: url('../assets/images/Sweeny-20.jpg') !important;
    background-size: cover;
    background-position: center;
    padding: 20rem 0;
    position: relative;
}

.hero-section.hero-practice-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section.hero-practice-areas .container {
    position: relative;
    z-index: 2;
}

/* Areas Served Page Background - Matches index.html hero aesthetic */
.hero-section.hero-areas-served {
    position: relative;
    background-image: url('../assets/images/charleston_colorful.png') !important;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 12rem 0;
    overflow: hidden;
}

.hero-section.hero-areas-served .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
}

.hero-section.hero-areas-served .container {
    position: relative;
    z-index: 10;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(2px);
}

/* Background Utilities */
.bg-gradient {
    background-image: url('../assets/images/charleston_courthouse.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 10rem 0;
}

.bg-gradient h2,
.bg-gradient .section-title {
    color: #ffffff;
}

.bg-gradient .section-subtitle {
    color: #ffffff;
}

.bg-dark {
    background-color: #1f2937;
    color: #ffffff;
}

/* Content Cards */
.content-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.content-text {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

.content-paragraph {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.content-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.section-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.section-closing {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #1e40af;
}

.breadcrumb-separator {
    color: #9ca3af;
}

.breadcrumb-current {
    color: #1f2937;
    font-weight: 500;
}

.breadcrumb-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-back:hover {
    color: #1d4ed8;
}

.breadcrumb-arrow {
    width: 1rem;
    height: 1rem;
}

/* Sidebar Cards */
.sidebar-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sidebar-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.sidebar-links a:hover {
    color: #1e40af;
}

/* Call-to-Action Sections */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.cta-section .section-subtitle {
    color: #ffffff;
}

/* Area Cards */
.area-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.area-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.area-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.area-type {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.area-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.secondary-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.secondary-area-card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.secondary-area-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.secondary-area-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Job Cards */
.job-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: inherit;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-department {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-type {
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.job-summary {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.job-detail {
    display: flex;
    gap: 0.5rem;
}

.job-detail.full-width {
    grid-column: 1 / -1;
}

.detail-label {
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    color: #1f2937;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.job-cta {
    color: #1e40af;
    font-weight: 500;
    transition: color 0.3s ease;
}

.job-card:hover .job-cta {
    color: #1d4ed8;
}

.job-posted {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Layout Classes */
.case-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.case-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.practice-area-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.practice-area-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.practice-area-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.career-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.career-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Blog Post Header Styling */
.blog-post-header {
    margin-bottom: 3rem;
    text-align: left;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.meta-separator {
    color: #d1d5db;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-post-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.blog-post-image {
    margin-bottom: 2rem;
    position: relative;
}

.blog-post-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Blog Post Content Styling */
.blog-post-prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    max-width: none;
}

.blog-post-prose h1,
.blog-post-prose h2,
.blog-post-prose h3,
.blog-post-prose h4,
.blog-post-prose h5,
.blog-post-prose h6 {
    color: #1f2937;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-prose h1 { font-size: 2.25rem; line-height: 1.2; }
.blog-post-prose h2 { font-size: 1.875rem; line-height: 1.3; }
.blog-post-prose h3 { font-size: 1.5rem; line-height: 1.4; }
.blog-post-prose h4 { font-size: 1.25rem; line-height: 1.5; }

.blog-post-prose p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-post-prose ul,
.blog-post-prose ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-prose li {
    margin-bottom: 0.5rem;
}

.blog-post-prose blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.blog-post-prose code {
    background-color: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: #e11d48;
}

.blog-post-prose pre {
    background-color: #1e293b;
    color: #f1f5f9;
    padding: 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-prose img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-prose a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}

.blog-post-prose a:hover {
    color: #1d4ed8;
}

/* Blog Post Sidebar Styling */
.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Practice Area Cards */
.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.practice-area-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.practice-area-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: inherit;
}

.practice-area-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.practice-area-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.practice-area-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1e40af;
    font-weight: 500;
}

.cta-text {
    transition: color 0.3s ease;
}

.practice-area-card:hover .cta-text {
    color: #1d4ed8;
}

.cta-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.practice-area-card:hover .cta-arrow {
    transform: translateX(0.25rem);
}

/* Text Utilities */
.text-accent {
    color: #93c5fd;
}

.hidden-mobile {
    display: inline;
}

/* Button Utilities */
.btn-full {
    width: 100%;
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #1e40af;
}

/* About Page Specific Styles */
.about-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    color: #ffffff;
    user-select: text;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-hero-img {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
}

.about-section-header {
    margin-bottom: 4rem;
}

.about-section-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-approach-card {
    padding: 3rem;
}

.about-approach-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}

.about-approach-paragraph {
    margin-bottom: 1.5rem;
}

.about-approach-highlight {
    font-weight: 600;
    color: #1f2937;
}

.about-quote-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #3b82f6;
}

.about-blockquote {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-cite {
    color: #1e40af;
    font-weight: 600;
}

.about-credentials-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-lg);
}

.about-credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* First Professional Credentials section - force single column layout */
.about-credentials-grid:first-of-type {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-credentials-grid:first-of-type .about-credential-card {
    width: 100%;
    max-width: none;
}

/* Portfolio Grid - from blank-template.html */
.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    background: var(--color-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-md);
}

.portfolio-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 0.8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.portfolio-content p {
    color: var(--color-text-gray);
}

.about-credential-card {
    background-color: #f9fafb;
}

.about-credential-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-credential-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-credential-item {
    border-left: 4px solid #1e40af;
    padding-left: 1.5rem;
}

.about-credential-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.about-credential-detail {
    color: #6b7280;
    margin: 0;
}

.about-affiliations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-affiliation-item {
    background-color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-affiliation-image {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 0.5rem auto;
    display: block;
}

.about-affiliation-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.about-differentiator-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-differentiator-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-differentiator-header {
    text-align: center;
}

.about-differentiator-title {
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-differentiator-line {
    width: 3rem;
    height: 0.25rem;
    background-color: #1e40af;
    margin: 0 auto;
}

.about-differentiator-card {
    border-left: 4px solid #1e40af;
}

.about-differentiator-card-right {
    background-color: #f8fafc;
    border-right: 4px solid #1e40af;
    border-left: none;
}

.about-differentiator-card-blue {
    background-color: #dbeafe;
    border-left: 4px solid #1e40af;
}

.about-differentiator-text {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-differentiator-text-last {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.about-differentiator-right {
    order: 2;
}

.about-differentiator-left {
    order: 1;
}

.about-difference-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-difference-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-difference-text {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-cta-bg {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.about-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.about-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* About CTA Secondary Button Override */
.about-cta-buttons .btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
}

.about-cta-buttons .btn-secondary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-secondary);
}

.about-case-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

.about-case-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 1rem;
}

.about-case-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-case-summary {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-case-link {
    color: #1e40af;
    font-weight: 500;
}

/* Cases Page Specific Styles */
.cases-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cases-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cases-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cases-stat-number {
    font-size: 2.5rem;
}

.cases-filters-section {
    margin-bottom: 3rem;
    text-align: center;
}

.cases-filters-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.cases-filter-status {
    margin-bottom: 1.5rem;
    display: none;
}

.cases-filter-status-inner {
    padding: 1rem;
    background-color: #dbeafe;
    border-radius: 0.75rem;
    border: 1px solid #3b82f6;
    display: inline-block;
}

.cases-filter-status-text {
    color: #1f2937;
}

.cases-filter-status-strong {
    color: #1e40af;
}

.cases-filter-clear {
    margin-left: 1rem;
    color: #1e40af;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.cases-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.cases-category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cases-category-btn.active {
    background-color: #1e40af;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cases-category-btn:not(.active) {
    background-color: #f9fafb;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.cases-category-btn:not(.active):hover {
    background-color: #dbeafe;
    color: #1e40af;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cases-disclaimer {
    border-left: 4px solid #1e40af;
    background-color: white;
    margin-bottom: 4rem;
}

.cases-disclaimer-text {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.cases-disclaimer-strong {
    color: #1f2937;
}

.cases-cta-bg {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
}

.cases-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cases-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cases-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cases-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cases-cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.cases-item-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cases-item-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    color: inherit;
}

.cases-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cases-item-amount {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1e40af;
}

.cases-item-category {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #3b82f6;
}

.cases-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.cases-item-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cases-item-summary {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cases-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.cases-item-link {
    color: #1e40af;
    font-weight: 500;
}

.cases-item-date {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Blog Page Specific Styles */
.blog-header {
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.blog-newsletter {
    background-color: #dbeafe;
    border-radius: 0.5rem;
    padding: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.blog-newsletter-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.blog-newsletter-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-newsletter-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: #1f2937;
}

.blog-newsletter-button {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.blog-newsletter-button:hover {
    background-color: #2563eb;
}

.blog-search-filters {
    margin-bottom: 2rem;
}

.blog-search-container {
    margin-bottom: 1.5rem;
}

.blog-search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.blog-search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
}

.blog-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.25rem;
    width: 1.25rem;
    color: #9ca3af;
}

.blog-hashtag-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.blog-hashtag-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.blog-hashtag-btn.active {
    background-color: #3b82f6;
    color: white;
}

.blog-hashtag-btn:not(.active) {
    background-color: #e5e7eb;
    color: #374151;
}

.blog-hashtag-btn:not(.active):hover {
    background-color: #d1d5db;
}

/* Hashtag filters - additional classes for blog.html compatibility */
.hashtag-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.hashtag-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.hashtag-btn.active {
    background-color: var(--color-primary);
    color: white;
}

.hashtag-btn:not(.active) {
    background-color: #e5e7eb;
    color: #374151;
}

.hashtag-btn:not(.active):hover {
    background-color: #d1d5db;
}

.blog-results-section {
    margin-bottom: 1.5rem;
}

.blog-results-count {
    color: #6b7280;
    text-align: center;
    margin: 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-no-results {
    display: none;
    text-align: center;
    padding: 3rem;
}

.blog-no-results-icon {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.blog-no-results-svg {
    margin: 0 auto;
    height: 4rem;
    width: 4rem;
}

.blog-no-results-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.blog-no-results-text {
    color: #6b7280;
    margin-bottom: 1rem;
}

.blog-item-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-item-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: inherit;
}

.blog-item-image {
    position: relative;
    width: 100%;
    height: 12rem;
    overflow: hidden;
}

.blog-item-img,
.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: #f3f4f6;
}

.blog-item-card:hover .blog-item-img,
.blog-item:hover .blog-item-image img {
    transform: scale(1.05);
}

.blog-item-featured {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #3b82f6;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.blog-item-content {
    padding: 1.5rem;
}

.blog-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.blog-item-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-item-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-item-hashtag {
    background-color: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.blog-item-hashtag-more {
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-item-link {
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-item-author {
    font-size: 0.875rem;
    color: #6b7280;
}

/* About Page Responsive Styles */
@media (max-width: 1024px) {
    .about-hero-grid,
    .about-approach-grid,
    .about-differentiator-row {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .about-differentiator-right,
    .about-differentiator-left {
        order: unset !important;
    }
    
    .about-credentials-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem !important;
    }
    
    .about-section-title,
    .about-difference-title,
    .about-cta-title {
        font-size: 2rem !important;
    }
    
    .about-differentiator-title {
        font-size: 1.5rem !important;
    }
    
    .about-affiliations-grid {
        grid-template-columns: 1fr;
    }
    
    .about-credentials-image {
        max-width: 280px;
        width: 100%;
    }
}

/* Cases Page Responsive Styles */
@media (max-width: 768px) {
    .cases-hero-title {
        font-size: 2rem !important;
    }
    
    .cases-hero-description {
        font-size: 1.125rem !important;
    }
    
    .cases-stats-grid {
        grid-template-columns: 1fr !important;
    }
    
    .cases-category-filters {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cases-category-btn {
        width: 200px !important;
    }
    
    .cases-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Additional Hero Styles */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Department Filters */
.department-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.department-filter {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    color: #6b7280;
    cursor: pointer;
}

.department-filter:hover {
    background-color: #dbeafe;
    color: #1e40af;
}

.department-filter.active {
    background-color: #1e40af;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.no-jobs-message {
    text-align: center;
    padding: 3rem;
}

.no-jobs-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-date {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 2rem;
}

.content-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #374151;
}

.content-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
}

.content-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-link {
    color: #1e40af;
    text-decoration: none;
}

.content-link:hover {
    text-decoration: underline;
}

.contact-info-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-firm-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-attorney {
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.contact-email,
.contact-phone {
    margin-bottom: 0.25rem;
}

.warning-box {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem 0;
}

.warning-title {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.warning-text {
    color: #92400e;
    margin: 0;
}

.disclaimer-box {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem 0;
}

.disclaimer-text {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .case-layout,
    .practice-area-layout,
    .career-layout,
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-prose {
        font-size: 1rem;
    }
    
    .blog-post-prose h1 { font-size: 1.875rem; }
    .blog-post-prose h2 { font-size: 1.5rem; }
    .blog-post-prose h3 { font-size: 1.25rem; }
    
    .blog-post-prose p {
        text-align: left;
    }
    
    .hidden-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem;
    }
    
    .hero-specialties ul {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-top-left {
        justify-content: center;
    }
    
    .tabs-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .tab-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .department-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .department-filter {
        width: 200px;
    }
    
    .practice-areas-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Areas Served page keeps 3 columns on tablet */
    .section.bg-light .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cases-grid,
    .blog-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        grid-template-columns: 1fr;
    }
    
    .job-details {
        grid-template-columns: 1fr;
    }
    
    .area-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Practice Area Page Specific Styles */

/* Stats Section Improvements */
.stats-section {
    padding: 3rem 0;
}

.stats-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.stats-section .section-subtitle {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bg-dark .stats-section .section-title,
.bg-dark .stats-section h2 {
    color: #ffffff;
}

.bg-dark .stats-section .section-subtitle {
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-card .stat-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff;
}

.stats-additional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stats-additional .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stats-additional .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.stats-additional .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* FAQ Section Improvements */
.faq-section {
    padding: 3rem 0;
}

.faq-section .section-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.faq-section .section-subtitle {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* FAQ Items - Completely Redesigned */
.faq-item {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: rgba(30, 64, 175, 0.2);
}

.faq-item.active {
    border-color: #1e40af;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.faq-question:focus {
    outline: none;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    padding-right: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: #1e40af;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    background: #1e40af;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(243, 244, 246, 0.4) 100%);
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-answer.active {
    max-height: 400px;
    opacity: 1;
    padding: 2rem;
}

.faq-answer.active::before {
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #374151;
    font-weight: 400;
}

.faq-cta {
    margin-top: 3rem;
}

.faq-cta .cta-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .stats-section .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-additional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1.125rem;
        padding-right: 2rem;
    }
    
    .faq-question::after {
        right: 1.5rem;
        width: 10px;
        height: 10px;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-answer.active {
        padding: 1.5rem;
    }
    
    .faq-answer::before {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    /* Benefits List Mobile Styles */
    .benefits-list .benefit-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-bullet {
        margin-top: 0.5rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
    
    .section-heading {
        font-size: 1.375rem;
    }
    
    /* Qualification List Mobile Styles */
    .qualification-list .qualification-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .qualification-bullet {
        margin-top: 0.5rem;
    }
    
    .qualification-text {
        font-size: 0.95rem;
    }
    
    /* Areas Grid Mobile */
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    /* Secondary Areas Grid Mobile */
    .secondary-areas-grid {
        grid-template-columns: 1fr;
    }
    
    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Areas Served page also goes to 1 column on mobile */
    .section.bg-light .benefits-grid {
        grid-template-columns: 1fr;
    }
    
}

/* Contact Form Styles - Extracted from inline styles to comply with CLAUDE.md */
.contact-hero {
    position: relative;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/charleston_courthouse.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.2);
    z-index: 1;
}

.contact-hero-overlay {
    z-index: 2;
}

.contact-hero-container {
    position: relative;
    z-index: 3;
}

.contact-hero-header {
    margin-bottom: 3rem;
}

.contact-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-description {
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
}

.contact-form-message {
    display: none;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-field {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
}

.contact-form-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
}

.contact-form-select option {
    color: #333;
}

.contact-form-textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    resize: vertical;
}

.contact-form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-title {
    font-size: 1.875rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-highlight {
    color: #60a5fa;
}

.contact-info-buttons {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-info-button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-info-phone {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
}

.contact-info-email {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.contact-info-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.contact-info-disclaimer-strong {
    color: white;
}

.contact-image {
    display: none;
}

.contact-image-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-image-photo {
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.sweeny-image-small {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sweeny-image-container {
    display: none;
}

@media (min-width: 768px) {
    .sweeny-image-container {
        display: block;
    }
}

/* Blog Search Styles - Extracted from inline styles to comply with CLAUDE.md */
.blog-search-section {
    margin-bottom: 2rem;
}

.blog-search-container {
    margin-bottom: 1.5rem;
}

.blog-search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.blog-search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
}

.blog-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.25rem;
    width: 1.25rem;
    color: #9ca3af;
}

/* Form Styles */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #dcfce7;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fecaca;
}

/* Input and Form Field Enhancements */
.contact-form-field::placeholder,
.contact-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-field:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

/* FAQ Accessibility - Updated for new design */
button.faq-question:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* Accessibility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-image {
        display: block;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem !important;
    }
    
    .contact-form-container {
        padding: 1.5rem !important;
    }
    
    .contact-info-card {
        padding: 1.5rem !important;
    }
}