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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #545454;
    background: #ffffff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #545454;
}

.nav-brand-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #545454;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: #c3f6ff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
    padding-top: 6rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #c3f6ff;
    color: #545454;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 2px;
}

.cta-button:hover {
    background: #a0d8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(195, 246, 255, 0.4);
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c3f6ff;
    background: #545454;
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 2px;
}

.section-header-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: #545454;
}

/* Practice Areas */
.practice-areas {
    background: #f8f8f8;
}

.practice-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.practice-card:last-child {
    grid-column: 2;
}

.practice-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.practice-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid #c3f6ff;
}

.practice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #545454;
    font-weight: 600;
}

.practice-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Attorney Section */
.attorney {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.attorney-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.attorney-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #545454;
    font-weight: 400;
}

.attorney-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    color: #666;
}

/* Testimonial */
.testimonial {
    background: #f8f8f8;
    text-align: center;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #c3f6ff;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author {
    font-weight: 600;
    color: #545454;
    font-size: 1.1rem;
}

/* Blog Section */
.blog {
    background: white;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: #f8f8f8;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #c3f6ff;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #545454;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #2c9ab7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #545454;
}

.view-all-posts {
    text-align: center;
    margin-top: 3rem;
}

.view-all-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #545454;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 2px;
}

.view-all-link:hover {
    background: #c3f6ff;
    color: #545454;
    transform: translateY(-2px);
}

/* Blog Post Page */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 2rem 4rem;
}

.blog-post-header {
    margin-bottom: 3rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #545454;
    line-height: 1.3;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666;
}

.blog-post-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 2.5rem 0 1.5rem;
    color: #545454;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: #545454;
}

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

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

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

.blog-post-content a {
    color: #2c9ab7;
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: #545454;
}

.back-to-blog {
    display: inline-block;
    margin-top: 3rem;
    color: #c3f6ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-to-blog:hover {
    color: #545454;
}

/* Footer */
footer {
    background: #545454;
    color: white;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content img {
    max-width: 125px;
    height: auto;
}

.footer-text {
    text-align: left;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.disclaimer {
    max-width: 900px;
    margin: 2rem auto 0;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

.disclaimer a {
    color: #c3f6ff;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .attorney {
        grid-template-columns: 1fr;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .practice-card:last-child {
        grid-column: 1;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    nav ul {
        gap: 1.5rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-post {
        padding: 6rem 1.5rem 3rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }
}
