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

body {
    font-family: 'Heebo', Arial, sans-serif;
    color: #030303;
    line-height: 1.8;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
header {
    background-color: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    font-weight: 300;
    font-size: 1rem;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #a1a1a1;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* About Section with Photo */
.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.about-photo {
    flex-shrink: 0;
}

.about-photo img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text {
    text-align: right;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.about-text .languages {
    margin-top: 30px;
    padding: 20px;
    background-color: #f6f6f6;
    border-radius: 8px;
}

.about-text .languages h3 {
    margin-bottom: 10px;
    color: #000;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.1rem;
    color: #a1a1a1;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f6f6f6;
}

.content-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #000;
    margin: 15px auto 0;
}

/* About Section */
#about .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.languages {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.languages h3 {
    margin-bottom: 10px;
    color: #000;
}

/* Practice Areas - Homepage Grid */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.practice-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.practice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
}

.practice-card p {
    color: #666;
    font-size: 0.95rem;
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Practice Areas - Detailed Page */
.practice-area-detailed {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.practice-area-detailed:last-of-type {
    border-bottom: none;
}

.practice-area-detailed h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
}

.practice-area-detailed h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #333;
}

.practice-area-detailed p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05rem;
}

.practice-area-detailed ul {
    margin: 15px 0 15px 25px;
    color: #444;
}

.practice-area-detailed li {
    margin-bottom: 8px;
}

.expertise-note {
    background-color: #f6f6f6;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.expertise-note h3 {
    margin-bottom: 15px;
    color: #000;
}

/* Values */
.values {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-item {
    text-align: center;
}

.value-item h4 {
    font-size: 1.1rem;
    color: #000;
}

/* Articles Section - Homepage */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.article-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-right: 4px solid #000;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

.article-card .date {
    color: #999;
    font-size: 0.9rem;
}

/* Articles List Page */
.articles-list {
    max-width: 800px;
    margin: 0 auto;
}

.article-preview {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.article-preview:last-child {
    border-bottom: none;
}

.article-preview .article-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.article-preview h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.article-preview h2 a {
    color: #000;
    transition: color 0.3s;
}

.article-preview h2 a:hover {
    color: #666;
}

.article-preview p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more {
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more:hover {
    color: #666;
}

/* Article Page */
.article-page {
    padding: 40px 0 80px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #666;
    transition: color 0.3s;
}

.back-link:hover {
    color: #000;
}

.article-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    color: #999;
    font-size: 0.95rem;
}

.article-meta span {
    margin-left: 20px;
}

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

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #000;
}

.article-content h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
    color: #333;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 20px 30px;
    color: #333;
}

.article-content li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.article-cta {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: #f6f6f6;
    border-radius: 8px;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 20px;
}

/* Contact Section - Homepage */
#contact {
    background-color: #000;
    color: #fff;
}

#contact .section-title {
    color: #fff;
}

#contact .section-title::after {
    background-color: #fff;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #a1a1a1;
}

.contact-item p {
    font-size: 1.2rem;
}

.contact-item a {
    color: #fff;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #a1a1a1;
}

/* Contact Page */
.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background-color: #f6f6f6;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #000;
}

.contact-card a {
    color: #000;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #666;
}

.map-container h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.map-address {
    margin-top: 15px;
    text-align: center;
}

.map-address a {
    color: #000;
    font-weight: 500;
}

.languages-section {
    text-align: center;
    padding: 40px;
    background-color: #f6f6f6;
    border-radius: 8px;
}

.languages-section h3 {
    margin-bottom: 10px;
}

.language-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.language-list span {
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    color: #a1a1a1;
}

/* Button */
.btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #000;
    color: #999;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 50px 0;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .about-photo img {
        width: 180px;
    }

    .values {
        gap: 30px;
    }

    .contact-info {
        gap: 40px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .language-list {
        gap: 15px;
    }

    .language-list span {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}
