* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e1e2f;
    line-height: 1.5;
}

/* Justified text for longer content */
.about-text p, .practice-card p, .contact-address, .attorney-bio, .case-desc, .hero-content p {
    text-align: justify;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a2540;
}

.logo-accent {
    color: #c69c6d;
    font-weight: 700;
    font-size: 1.6rem;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #5a6e7a;
    margin-left: 6px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1e1e2f;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: #c69c6d;
}

.lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 20px;
    transition: all 0.2s;
    color: #5a6e7a;
}

.lang-btn.active {
    background: #0a2540;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 70px 0 60px;
    border-bottom: 1px solid #eaeef2;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background: #e8f0f5;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0a2540;
}

.hero-content p {
    font-size: 1.1rem;
    color: #3b4e5e;
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    background: #0a2540;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn:hover {
    background: #c69c6d;
    transform: translateY(-2px);
}

.hero-image {
    flex: 0.8;
    text-align: center;
}

.hero-image i {
    font-size: 12rem;
    color: #c69c6d;
    opacity: 0.7;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 48px 0;
    color: #0a2540;
}

.practice-grid, .attorneys-grid, .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.practice-card, .attorney-card, .case-card {
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    padding: 28px 20px;
    transition: all 0.25s;
    text-align: center;
}

.practice-card:hover, .attorney-card:hover, .case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
}

.practice-icon, .attorney-icon {
    font-size: 2.5rem;
    color: #c69c6d;
    margin-bottom: 16px;
}

.practice-card h3, .attorney-card h3, .case-card h3 {
    margin-bottom: 12px;
}

.attorney-title {
    font-weight: 600;
    color: #c69c6d;
    margin-bottom: 12px;
}

.case-number {
    font-family: monospace;
    font-size: 0.8rem;
    background: #f0f2f5;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.case-category {
    font-size: 0.75rem;
    color: #c69c6d;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-section {
    background: #f8f9fc;
    border-radius: 32px;
    margin: 60px 0;
    padding: 40px 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 16px;
}

.contact-address {
    font-style: normal;
    line-height: 1.6;
    color: #3b4e5e;
}

.map-placeholder {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
}

.contact-details {
    background: #f8f9fc;
    padding: 24px;
    border-radius: 24px;
}

.contact-details i {
    color: #c69c6d;
    width: 24px;
}

.footer {
    border-top: 1px solid #eaeef2;
    padding: 32px 0;
    text-align: center;
    color: #5a6e7a;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 16px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-image i {
        font-size: 6rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-links.show {
        display: flex;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}