/* ==========================================================================
   Goel Zechariah Law Office - Professional Legal Website
   Color Scheme: Gold (#C9A961) & Navy (#0A1628)
   ========================================================================== */

/* Variables */
:root {
    /* Brand Colors from Logo */
    --gold: #C9A961;
    --gold-dark: #B8924A;
    --gold-light: #D4B670;
    --navy: #0A1628;
    --navy-light: #1a2a42;
    --navy-lighter: #2a3f5f;

    /* Accent Colors */
    --cream: #F5F1E8;
    --white: #ffffff;
    --black: #0D0D0D;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;

    /* Semantic Colors */
    --success: #2d7a4f;
    --error: #c41e3a;
    --border: #e0dcd0;
    --shadow: rgba(10, 22, 40, 0.15);

    /* Typography */
    --font-primary: 'Heebo', 'Assistant', -apple-system, sans-serif;
    --font-headings: 'Heebo', 'Assistant', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Layout */
    --max-width: 1280px;
    --border-radius: 2px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--navy);
    letter-spacing: -0.02em;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 600; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.2rem; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-headings);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navigation */
.site-header {
    background-color: var(--navy);
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    margin-left: auto;
    margin-right: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

/* Invisible bridge to prevent dropdown from closing when moving mouse */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 1rem;
    background: transparent;
    z-index: 1001;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background-color: var(--navy-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    min-width: 220px;
    display: none;
    list-style: none;
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--cream);
}

.dropdown-menu a:hover {
    background-color: var(--navy-lighter);
    color: var(--gold);
}

.dropdown-menu a::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    box-sizing: border-box;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--cream);
    padding: 1rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs span {
    color: var(--navy);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 169, 97, 0.03) 35px, rgba(201, 169, 97, 0.03) 70px);
    pointer-events: none;
}

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

.hero-content h1 {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cream);
    font-weight: 500;
}

.feature-item svg {
    stroke: var(--gold);
    flex-shrink: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.lead {
    font-size: 1.375rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--navy);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.25rem;
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--gold);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon svg {
    stroke: var(--gold);
    margin: 0 auto;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--gold-dark);
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 5rem 0;
}

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

.why-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-right: 4px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: 1rem;
    font-family: var(--font-headings);
}

.why-item h3 {
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.why-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Target Audience */
.target-audience {
    padding: 5rem 0;
}

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

.audience-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 1.75rem;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.audience-card:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

/* Process Section */
.process {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0;
    color: var(--cream);
}

.process .section-title,
.process .section-subtitle {
    color: var(--cream);
}

.process .section-title::after {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.step {
    background-color: var(--navy-lighter);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 200px;
    min-height: 280px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.step-number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.step p {
    font-size: 0.9375rem;
    color: var(--cream);
    margin: 0;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold);
}

/* Areas Served */
.areas-served {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.area-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.area-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow);
}

.area-card h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.area-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 5rem 0;
}

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

.faq-item {
    background-color: var(--white);
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background-color: transparent;
    border: none;
    text-align: right;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
    transition: var(--transition);
    font-family: var(--font-headings);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    stroke: var(--gold);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 600px;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 169, 97, 0.03) 35px, rgba(201, 169, 97, 0.03) 70px);
}

.cta-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-content {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-photo {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: 2px solid var(--gold);
}

.photo-placeholder p {
    color: var(--cream);
    text-align: center;
    padding: var(--spacing-md);
    font-size: 0.9rem;
}

.credentials-box {
    background-color: var(--cream);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-right: 3px solid var(--gold);
}

.credentials-box h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    padding: var(--spacing-xs) 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.credentials-list li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    margin-left: var(--spacing-xs);
}

.about-text {
    padding-right: var(--spacing-md);
}

.about-text > div {
    margin-bottom: var(--spacing-xl);
}

.philosophy-section .large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.philosophy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.value-item {
    padding: var(--spacing-md);
    background-color: var(--cream);
    border-radius: var(--border-radius);
    border-right: 3px solid var(--gold);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px var(--shadow);
}

.value-item h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding-right: var(--spacing-md);
}

.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.timeline-item {
    position: relative;
    padding-right: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 5px;
    width: 14px;
    height: 14px;
    background-color: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--navy-lighter);
}

.timeline-year {
    display: inline-block;
    background-color: var(--navy);
    color: var(--gold);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.timeline-content h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.expertise-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--spacing-sm);
}

.expertise-list li {
    padding: var(--spacing-md);
    background-color: var(--cream);
    border-radius: var(--border-radius);
    border-right: 3px solid var(--gold);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition);
}

.expertise-list li:hover {
    background-color: var(--navy);
    color: var(--white);
}

.expertise-list li:hover strong {
    color: var(--gold);
}

.expertise-list li strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.25rem;
}

.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-xl) 0;
}

.stats-section h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    color: var(--cream);
    font-size: 1rem;
}

.personal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    border-right: 3px solid var(--gold);
    margin-bottom: var(--spacing-sm);
    background-color: var(--cream);
    border-radius: var(--border-radius);
}

.why-me-section {
    background-color: var(--cream);
    padding: var(--spacing-xxl) 0;
}

.why-me-section .section-title {
    text-align: center;
    color: var(--navy);
    margin-bottom: var(--spacing-lg);
}

/* Responsive - About Page */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-photo {
        position: static;
    }

    .photo-placeholder {
        max-width: 400px;
        margin: 0 auto var(--spacing-md);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline {
        padding-right: var(--spacing-sm);
    }

    .timeline-item {
        padding-right: var(--spacing-md);
    }
}

/* Footer */
.site-footer {
    background-color: var(--black);
    color: #b0b0b0;
    padding: 4rem 0 1.5rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-right: 4px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9375rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

/* Midrag Reviews Badge */
.hero-midrag {
    display: none;
}

.open-accessibility {
    z-index: 2000 !important;
}

.midrag-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 1.5rem;
    background-color: #C41E7F;
    border-radius: var(--border-radius);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(196, 30, 127, 0.2);
    direction: ltr; /* Force LTR for rating display */
    box-sizing: border-box;
}

.midrag-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 30, 127, 0.3);
    background-color: #a8196c;
}

.midrag-star {
    width: 16px;
    height: 16px;
    fill: var(--white);
    flex-shrink: 0;
}

.midrag-logo {
    width: 20px;
    height: 20px;
    fill: var(--white);
    flex-shrink: 0;
}

.midrag-text {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-primary);
}

.midrag-rating {
    font-weight: 700;
    font-size: 1.1rem;
}

.midrag-count {
    font-size: 0.85rem;
    opacity: 0.9;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 0.35rem;
    margin-left: 0.1rem;
}

/* Contact Form */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Actions Main */
.contact-actions-main {
    text-align: center;
}

.contact-actions-main h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-actions-main .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.main-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    border: 3px solid transparent;
}

.contact-btn svg {
    flex-shrink: 0;
}

.contact-btn div {
    text-align: right;
}

.contact-btn .btn-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-btn .btn-subtitle {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.whatsapp-main {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
    border-color: rgba(255,255,255,0.3);
}

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

.phone-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.4);
    border-color: var(--navy);
}

.contact-form-container h2 {
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-primary);
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    color: var(--cream);
}

.contact-info-box h3 {
    margin-bottom: 2rem;
    color: var(--gold);
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: var(--cream);
}

.info-item a {
    color: var(--cream);
}

.info-item a:hover {
    color: var(--gold);
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow);
    border-color: var(--gold);
}

.blog-card.featured {
    grid-column: 1 / -1;
}

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
}

.blog-category {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.375rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-content h2,
.blog-content h3 {
    margin-bottom: 0.75rem;
}

.blog-content h2 a,
.blog-content h3 a {
    color: var(--navy);
}

.blog-content h2 a:hover,
.blog-content h3 a:hover {
    color: var(--gold);
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.blog-read-more {
    color: var(--gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .main-contact-buttons {
        max-width: 100%;
    }

    .contact-btn {
        padding: 1.5rem 2rem;
    }

    .contact-btn .btn-title {
        font-size: 1.25rem;
    }

    .nav-wrapper {
        justify-content: space-between;
        gap: 0;
    }

    .logo img {
        height: 45px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--navy);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        display: none;
        border-top: 1px solid var(--gold-dark);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: block;
        background-color: var(--navy-lighter);
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
    }

    .dropdown-menu a {
        padding-right: 2rem;
        font-size: 0.9rem;
        background-color: rgba(0,0,0,0.2);
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .cta-button {
        height: 40px;
        padding: 0 1rem;
        font-size: 0.8rem;
        order: 2;
        margin-right: auto;
        margin-left: 1rem;
    }

    h1 { font-size: 2.25rem; line-height: 1.2; }
    h2 { font-size: 1.875rem; line-height: 1.2; }
    h3 { font-size: 1.5rem; }

    section {
        padding: 3rem 0 !important;
    }

    .hero {
        padding: 4rem 0 !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 0;
    }

    .step {
        max-width: 100%;
        min-height: auto;
        padding: 1.5rem;
    }

    .step-arrow {
        transform: rotate(-90deg);
        margin: 1rem 0;
        font-size: 1.5rem;
    }

    .benefits-grid,
    .why-me-grid,
    .services-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .site-header .midrag-badge {
        display: none !important;
    }

    .hero-midrag {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .midrag-badge--hero {
        display: flex !important;
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(196, 30, 127, 0.3);
    }

    .open-accessibility {
        top: 120px !important;
    }
}

@media (max-width: 640px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }

    .hero {
        padding: 3rem 0;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================================================
   New Homepage Sections
   ========================================================================== */

/* Hero Updates */
.hero-subtitle--large {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--cream);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Who Fits Section */
.who-fits {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-lead {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
}

.section-conclusion {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Why Agreement Section */
.why-agreement {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--gold);
    transform: translateX(-4px);
}

.benefit-item svg {
    stroke: var(--gold);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
}

/* Why Choose Me Section */
.why-choose-me {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.why-me-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.why-me-item:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow);
}

.why-me-item svg {
    stroke: var(--gold);
    margin-bottom: 1rem;
}

.why-me-item h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.why-me-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Additional Services Section */
.additional-services {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 5rem 0;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* SEO Content Section */
.seo-content {
    padding: 3rem 0;
    background-color: var(--cream);
}

.seo-content p {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .hero-subtitle--large {
        font-size: 1.375rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

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

    .why-me-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-subtitle--large {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-lead,
    .section-conclusion {
        font-size: 1.125rem;
    }
}

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

/* ==========================================================================
   Service Page Layout (Pro / Magazine Style)
   ========================================================================== */

/* Main Layout Grid */
.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: start;
}

.service-main {
    font-size: 1.125rem;
    line-height: 1.8;
}

.service-aside {
    position: sticky;
    top: 120px;
}

/* Service Hero (Minimalist) */
.service-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 169, 97, 0.05) 35px, rgba(201, 169, 97, 0.05) 70px);
    pointer-events: none;
}

.service-hero h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-hero .lead {
    font-size: 1.5rem;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Typography Enhancements for Reading */
.service-main h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.service-main h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--navy-light);
}

.service-main p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-intro {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Comparison Table (Power of Attorney vs. Guardianship) */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: right;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background-color: var(--navy);
    color: var(--white);
    font-size: 1.1rem;
    width: 33%;
}

.comparison-table th:first-child {
    background-color: var(--navy-light);
    width: 20%;
}

.comparison-table th:nth-child(2) {
    background-color: var(--gold-dark); /* Highlight column */
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: var(--cream);
}

.cell-highlight {
    color: var(--success);
    font-weight: 700;
}

.cell-negative {
    color: var(--error);
}

/* Vertical Process Timeline */
.vertical-timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 2px;
    background: var(--border);
}

.v-step {
    position: relative;
    padding-right: 60px;
    margin-bottom: 3rem;
}

.v-step:last-child {
    margin-bottom: 0;
}

.v-step-marker {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
}

.v-step-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px var(--shadow);
    border-right: 4px solid var(--gold);
}

.v-step-content h3 {
    margin-top: 0;
    color: var(--navy);
}

/* Sidebar Widgets */
.sidebar-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 2rem;
    border-top: 4px solid var(--gold);
}

.sidebar-title {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-contact-form .form-group {
    margin-bottom: 1rem;
}

.sidebar-contact-form input,
.sidebar-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
}

.toc-nav ul {
    list-style: none;
    padding: 0;
}

.toc-nav li {
    margin-bottom: 0.75rem;
}

.toc-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.toc-nav a::before {
    content: '•';
    color: var(--gold);
}

.toc-nav a:hover {
    color: var(--navy);
    transform: translateX(-4px);
}

/* Author Snippet */
.author-snippet {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--navy);
    border: 2px solid var(--gold);
}

/* Content List */
.content-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.content-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: var(--border-radius);
    border-right: 4px solid var(--gold);
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-list li strong {
    color: var(--navy);
}

/* Mobile Responsiveness for Service Layout */
@media (max-width: 968px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-aside {
        position: static;
        order: 2; /* Move to bottom on mobile */
    }

    .service-main {
        order: 1;
    }

    .service-hero h1 {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   Temporary: Hide Knowledge Center (מרכז ידע)
   ========================================================================== */

/* Hide Knowledge Center from navigation menu */
.nav-menu li:has(a[href*="blog"]) {
    display: none;
}

/* Hide Knowledge Center from footer */
.footer-col ul li:has(a[href*="blog"]) {
    display: none;
}
