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

/* Cases Carousel Styles */
.cases-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
}

.cases-carousel {
    overflow: hidden;
    padding: 1rem 0 3rem 0;
}

.cases-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.cases-carousel .case-item {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: calc(33.333% - 1.5rem);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-navy);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-navy);
}

.carousel-btn:hover svg {
    fill: white;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-navy);
    transition: fill 0.3s ease;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-navy);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .cases-carousel .case-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .cases-carousel .case-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-prev {
        left: -15px;
    }

    .carousel-next {
        right: -15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .cta-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .cta-wrapper .cta-content h2 {
        font-size: 2rem !important;
    }

    .cta-image {
        height: 300px;
    }
}

:root {
    --primary-navy: #051d40;
    --primary-blue: #4a90e2;
    --accent-blue: #87ceeb;
    --accent-light-blue: #b3d9f2;
    --dark-blue: #5ba3d1;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.75;
    color: #1a1a1a;
    background-color: #2d5a7b;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

h2 {
    font-size: 3.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Navy heading class */
.navy-heading {
    color: #051d40;
}

/* League Spartan font class */
.league-spartan {
    font-family: 'League Spartan', sans-serif;
}

/* Header Styles */
.header {
    background-color: rgba(5, 29, 64, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
    background-color: rgba(74, 144, 226, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(135, 206, 235, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.header.scrolled .nav-link {
    text-shadow: none;
}

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

.phone-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-btn:hover {
    background-color: white;
    color: var(--primary-navy);
    text-shadow: none;
}

.header.scrolled .phone-btn {
    text-shadow: none;
    border-color: white;
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.4);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile nav buttons - hidden on desktop */
.nav-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero {
        overflow-x: hidden;
    }

    .hero-content {
        padding: 3rem 1rem;
        overflow-x: hidden;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #051d40;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* Hide desktop CTA buttons on mobile */
    .nav-cta {
        display: none !important;
    }

    /* Show mobile CTA buttons inside hamburger menu */
    .nav-cta-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1.5rem;
        width: 100%;
        max-width: 320px;
    }

    .nav-cta-mobile .phone-btn,
    .nav-cta-mobile .cta-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
        padding: 0.875rem 1rem;
    }

    .logo-img {
        height: 50px;
    }

    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }

    .hamburger {
        margin-left: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .hero-form {
        max-width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        text-align: center;
        padding: 0 0.5rem;
        margin: 0 0 1rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        text-align: center;
        padding: 0 0.5rem;
        margin: 0 0 1.5rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-cta {
        justify-content: center;
        padding: 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta .cta-secondary {
        width: 90%;
        max-width: 300px;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    margin-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0 2rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-logo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 2;
}

.hero-logo-icon {
    width: 800px;
    height: auto;
    max-width: 90vw;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 3;
}

.hero-shattered-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('public/shattered glass overlay.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
    z-index: 2.5;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 4rem 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    color: white;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    line-height: 1.75;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
    margin: 2rem 0;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-form h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.125rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.25);
    background-color: #fafafa;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    cursor: pointer;
    accent-color: var(--accent-blue);
}

.checkbox-text {
    flex: 1;
}

.form-submit {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9375rem;
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

.cta-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-navy);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border: 2px solid white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9375rem;
}

.cta-secondary:hover {
    background-color: white;
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Form Styles */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.hero-form h3 {
    color: #051d40;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-submit {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

/* Hero Layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header-text {
    color: white;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.page-header-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow:
        -2px -2px 0 #051d40,
        2px -2px 0 #051d40,
        -2px 2px 0 #051d40,
        2px 2px 0 #051d40,
        0 0 10px rgba(5, 29, 64, 0.5);
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow:
        -1px -1px 0 #051d40,
        1px -1px 0 #051d40,
        -1px 1px 0 #051d40,
        1px 1px 0 #051d40,
        0 0 10px rgba(5, 29, 64, 0.5);
}

.page-header-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.hero-form h3 {
    color: #051d40;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-submit {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .page-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .page-header-text {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta {
        justify-content: center;
        gap: 1rem;
    }

    .page-header-cta {
        flex-direction: column;
        align-items: center;
    }

    .page-header-cta .cta-primary,
    .page-header-cta .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 4rem 0;
}

.page-header:has(.form-container) {
    min-height: 80vh;
    padding: 6rem 0;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
}

.page-header-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Section Styles */
.mission-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4A90E2 0%, #87CEEB 100%);
}

.mission-section h2 {
    color: white !important;
}

.mission-section h3 {
    color: #1a73e8 !important;
}

.mission-section p {
    color: white !important;
}

.mission-section .value-item h3 {
    color: white !important;
}

.mission-section .value-item p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.mission-section.blue-bg {
    background-color: #051d40;
    color: white;
}

.mission-section.blue-bg h2 {
    color: white;
}

.mission-section.blue-bg h3 {
    color: #1a73e8 !important;
}

.values-section {
    padding: 4rem 0;
    background-color: #f8f9fa !important;
}

.values-section h2,
.values-section h3 {
    color: var(--primary-navy) !important;
}

.values-section p {
    color: #555 !important;
}

.values-section .section-header h2 {
    color: var(--primary-navy) !important;
}

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

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-align: center;
    width: 100%;
}

.section-header p {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Grid Layouts */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.value-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.04);
    flex: 0 1 350px;
}

.mission-section .value-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-section.blue-bg .value-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.35);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-item h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-navy) !important;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mission-section .value-item h3 {
    color: white !important;
}

.mission-section.blue-bg .value-item h3 {
    color: white !important;
}

.value-item p {
    color: #555 !important;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.mission-section .value-item p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.mission-section.blue-bg .value-item p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Practice Areas Styles */
.practice-areas-preview {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.practice-areas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.practice-areas-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.practice-areas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 29, 64, 0.9) 0%, rgba(74, 144, 226, 0.7) 50%, rgba(244, 185, 66, 0.3) 100%);
    z-index: 2;
}

.practice-areas-content {
    position: relative;
    z-index: 3;
    color: white;
}

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

.practice-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice-item:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.practice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.practice-icon svg {
    width: 40px;
    height: 40px;
}

.practice-item h3 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.practice-item p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.practice-btn {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.practice-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

/* Practice Areas Main Page */
.practice-areas-main {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.practice-areas-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.practice-area-card {
    background: #1a365d;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid #1a365d;
    text-decoration: none;
}

.practice-area-card h3,
.practice-area-card p {
    text-decoration: none;
}

.practice-area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.practice-area-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a365d 0%, #87CEEB 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.practice-area-icon svg {
    width: 35px;
    height: 35px;
}

.practice-area-card h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.practice-area-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.case-count {
    background: #60a5fa;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.75rem;
}

.practice-area-btn {
    background: white;
    color: #1a365d;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.practice-area-btn:hover {
    background: #87CEEB;
    color: white;
    transform: translateX(2px);
}

/* Why Choose Images Section */
.why-choose-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.why-choose-image-item {
    text-align: center;
}

.why-choose-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.why-choose-image-item h3 {
    color: #1a365d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-image-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Knowledge Base Styles */
.knowledge-search {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.search-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-container h2 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.search-box {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.knowledge-categories {
    padding: 4rem 0;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.category-icon svg {
    width: 30px;
    height: 30px;
}

.category-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1rem;
}

.article-count {
    background-color: #e3f2fd;
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.category-card-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 320px;
    text-decoration: none;
    display: block;
}

.category-card-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.category-card-visual:hover .category-image img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.3) 0%, rgba(26, 54, 93, 0.85) 100%);
    transition: background 0.4s ease;
}

.category-card-visual:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.5) 0%, rgba(26, 54, 93, 0.92) 100%);
}

.category-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    color: white;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-content h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.category-content p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    opacity: 0.95;
    text-decoration: none;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.category-link-visual {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.category-link-visual:hover {
    color: #87CEEB;
    transform: translateX(5px);
    border-bottom-color: #87CEEB;
}

@media (max-width: 768px) {
    .categories-grid-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card-visual {
        height: 280px;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }

    .category-content p {
        font-size: 0.95rem;
    }
}

.featured-articles {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.articles-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
    overflow: hidden;
}

.articles-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.article-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-slide .article-category {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.article-slide h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-slide p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.article-slide .article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: var(--primary-navy);
    transform: translateY(-50%);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #bbb;
}

.carousel-dot.active {
    background: var(--primary-navy);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .article-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .article-slide {
        flex: 0 0 100%;
    }

    .articles-carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

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

.knowledge-article {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.knowledge-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.knowledge-article.featured {
    border-left: 4px solid var(--accent-gold);
}

.article-category {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.knowledge-article h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-decoration: none;
}

.knowledge-article p {
    color: #666;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

/* FAQ Styles */
.knowledge-faq {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    color: var(--primary-navy);
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tools Section */
.knowledge-tools {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.tool-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tool-icon svg {
    width: 30px;
    height: 30px;
}

.tool-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.tool-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.tool-link {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.tool-link:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 185, 66, 0.3);
}

/* Newsletter Styles */
.knowledge-newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.newsletter-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 45, 98, 0.1) 0%, rgba(0, 45, 98, 0.05) 100%);
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newsletter-content {
    text-align: left;
}

.newsletter-content h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.newsletter-content > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
    color: white !important;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.newsletter-form button svg {
    transition: transform 0.3s ease;
}

.newsletter-form button:hover svg {
    transform: translateX(3px);
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-disclaimer svg {
    flex-shrink: 0;
    color: var(--accent-blue);
}

@media (max-width: 968px) {
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .newsletter-image {
        max-height: 300px;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}

/* Legal Insights Styles */
.articles-section {
    padding: 4rem 0;
}

.article-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.article-date {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.article-title {
    color: var(--primary-navy);
    margin: 0.5rem 0 1rem;
    font-size: 1.25rem;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--dark-blue);
}

.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 50%, var(--accent-gold) 100%);
    color: white;
}

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

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.resource-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.resource-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.resource-link {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-link:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 185, 66, 0.3);
}

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

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.category-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.category-link {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.category-link:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

/* Who We Are Styles */
.who-we-are-preview {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.who-we-are-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.who-we-are-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 29, 64, 0.9) 0%, rgba(74, 144, 226, 0.7) 50%, rgba(244, 185, 66, 0.3) 100%);
    z-index: 2;
}

.pledge-content {
    position: relative;
    z-index: 3;
    color: white;
}

.pledge-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pledge-conclusion {
    text-align: center;
    margin-top: 3rem;
}

.pledge-conclusion p {
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #87CEEB 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.approach-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.approach-item p {
    color: #666;
}

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

.difference-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.difference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.difference-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.difference-item p {
    color: #666;
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.why-choose .section-header {
    text-align: center;
}

.why-choose .section-header h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
}

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

.benefit-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.04);
}

.benefit-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.35);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.benefit-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Firm Statistics */
.firm-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 50%, var(--accent-gold) 100%);
    color: white;
    text-align: center;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-light-blue);
    margin-bottom: 0.5rem;
    font-family: 'League Spartan', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.contact-photo {
    display: none;
}

.consultation-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-container .hero-contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #333;
}

.form-container .hero-contact-form .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-container .hero-contact-form .section-header h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.form-container .hero-contact-form .form-subtitle {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-logo {
    text-align: center;
    margin-top: 2rem;
}

.contact-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.7;
}

.contact-info-section {
    padding: 4rem 0;
}

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

.contact-info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info-item .icon svg {
    width: 30px;
    height: 30px;
}

.contact-info-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contact-info-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--dark-blue);
}

.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.faq-grid .faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-grid .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-grid .faq-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-grid .faq-item p {
    color: #666;
    margin: 0;
}

/* Practice Area Detail Pages */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    flex: 0 1 350px;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.case-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1a2332 0%, #87CEEB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.3);
}

.case-icon svg {
    width: 35px;
    height: 35px;
    fill: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.case-icon svg path {
    fill: white !important;
}

.case-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center !important;
}

.case-item p {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    text-align: center !important;
}

.case-cta {
    background: #1a365d !important;
    color: white !important;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.case-cta:hover {
    background: #0f2744 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

/* CTA Sections */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--primary-navy) !important;
}

.final-cta h2,
.final-cta h3 {
    color: var(--primary-navy) !important;
}

.final-cta p {
    color: var(--primary-navy) !important;
}

.final-cta .cta-content h2 {
    color: var(--primary-navy) !important;
    text-shadow: none !important;
}

.final-cta .cta-content p {
    color: var(--primary-navy) !important;
    text-shadow: none !important;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-wrapper .cta-content {
    text-align: left !important;
}

.cta-wrapper .cta-content h2 {
    text-align: left !important;
    font-size: 3rem !important;
}

.cta-wrapper .cta-content p {
    text-align: left !important;
}

.cta-wrapper .cta-buttons {
    justify-content: center !important;
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.cta-text h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.cta-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content-with-image .cta-text {
    text-align: left;
}

.cta-content-with-image .cta-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-content-with-image .cta-text p {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-content-with-image .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.cta-content-with-image .cta-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.cta-content-with-image .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 968px) {
    .cta-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content-with-image .cta-image {
        height: 300px;
    }

    .cta-content-with-image .cta-text h2 {
        font-size: 2.5rem;
    }
}

.cta-content h2 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--primary-navy);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-navy);
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 185, 66, 0.4);
}

.cta-secondary {
    background: white;
    color: var(--primary-navy);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-buttons {
        justify-content: center;
    }

    .cta-image img {
        height: 350px;
    }
}

.cta-logo {
    margin-top: 2rem;
}

.cta-logo-img {
    height: 250px;
    width: auto;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    background-color: transparent;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0a1628;
    color: white;
    padding: 5rem 0 2rem;
    border-top: 2px solid rgba(135, 206, 235, 0.1);
}

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

.footer-section {
    padding: 0 0.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-cta {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-cta:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.disclaimer {
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-blue);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--dark-blue);
}

.legal-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Chatbot */

/* Form Validation */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Animations */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .consultation-photo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 1.75rem !important;
        text-align: center;
        padding: 0;
        margin: 0 0 1rem 0;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        text-align: center;
        padding: 0;
        margin: 0 0 1.5rem 0;
        width: 100%;
    }

    .hero-form {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .form-row,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .date-inputs {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }


    .values-grid,
    .practice-grid,
    .benefits-grid,
    .differences-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-form,
    .contact-form {
        padding: 1.5rem;
    }

    .form-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .form-container .hero-contact-form {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem !important;
        text-align: center;
        padding: 0;
        margin: 0 0 1rem 0;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}