/* Brand Variables */
:root {
  --brand-primary: #02BBFB;
  --brand-secondary: #D28DD0;
  --brand-accent: #01B1F4;
  --brand-dark: #F47434;
  --brand-light: #8EB6F1;
  --brand-neutral: #D28DD0;

  --text: #0F1115;
  --text-secondary: #6B7280;
  --text-invert: #FFFFFF;
  --bg: #FFFFFF;
  --card: #F7F9FC;
  --card-bg: #F7F9FC;
  --border: #E3E7EE;
  --link: #02BBFB;
  --link-hover: #01B1F4;
  --space-5: 3rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --brand-50: #F0F9FF;
  --brand-100: #E0F2FE;
  --brand-600: #0284C7;
  --brand-700: #0369A1;
}

/* Components */
.btn-primary {
  background: var(--brand-primary);
  color: var(--text-invert);
  border: 1px solid transparent;
}
.btn-primary:hover { filter: brightness(1.05); }

.link { color: var(--brand-secondary); }

.badge {
  background: var(--brand-accent);
  color: var(--text-invert);
  padding: 4px 8px;
  border-radius: 9999px;
  font-weight: 600;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  color: var(--brand-primary);
}

/* Utility Classes */
.bg-primary { background: var(--brand-primary); color: var(--text-invert); }
.bg-secondary { background: var(--brand-secondary); color: var(--text-invert); }
.text-primary { color: var(--brand-primary); }
.text-secondary { color: var(--brand-secondary); }
.border-primary { border-color: var(--brand-primary); }

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Override theme.css container for backward compatibility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

/* Logo styling */
.logo-link {
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--text-invert);
}

.btn-primary:hover {
    background-color: var(--brand-accent);
    color: var(--text-invert);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--brand-dark);
    color: var(--text-invert);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
}

.btn-outline:hover {
    background-color: var(--brand-primary);
    color: var(--text-invert);
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-xs);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

/* Logo styling moved to theme.css */

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.75rem 0;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-600);
    text-decoration: none;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--brand-600);
}

.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-invert);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    border: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s ease;
    border-radius: 4px;
    margin: 0 0.5rem;
    width: calc(100% - 1rem);
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    color: var(--brand-primary);
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background: url(/header-hero.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
    height: 350px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    /* padding-top: 60vh; */
    padding-bottom: 0;
    /* min-height: 60vh; */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Hero CTA Section */
.hero-cta-section {
    background: var(--bg);
    padding: 2rem 0;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background-color: var(--card);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

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

.lead {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    /* padding: 4rem 0; */
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 0.75rem;
    color: var(--brand-600);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-link {
    color: var(--brand-600);
    font-weight: 500;
}

/* Career Highlights */
.careers-highlight {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    padding: 4rem 0;
    margin: 4rem 0;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.careers-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.careers-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.career-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.3;
}

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

.highlight-card {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand-600);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    margin-bottom: 0.75rem;
    color: var(--brand-600);
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
}

.highlight-card h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.highlight-card p {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
}

/* Featured Jobs on Homepage */
.featured-jobs {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-jobs h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.featured-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-job-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.featured-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.featured-job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.featured-job-type {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}


.featured-job-card h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.featured-job-location {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.featured-job-apply {
    display: block;
    background: var(--brand-primary);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.featured-job-apply:hover {
    background: var(--brand-accent);
    color: white;
}

.all-jobs-link {
    text-align: center;
}

/* Locations */
.locations h2 {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

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

.location-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.location-card h3 {
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.location-card p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Locations Overview Section */
.locations-overview {
    background: var(--bg);
    padding: 4rem 0;
}

.locations-overview h2 {
    text-align: center;
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.location-badge {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.location-name {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--bg);
    padding: 4rem 0;
}

.faq-section h2 {
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    padding: 1.5rem;
    background: var(--brand-50);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--brand-100);
    color: var(--brand-700);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-600);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.25rem;
    }
    
    .faq-question::after {
        right: 1.25rem;
        font-size: 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-question::after {
        right: 1rem;
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Company Culture Section */
.company-culture {
    background: var(--bg);
    padding: 4rem 0;
}

.culture-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.culture-text {
    text-align: center;
    max-width: 800px;
}

.culture-list {
    text-align: left;
}

.culture-text h2 {
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.culture-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.culture-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.culture-list li {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.culture-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 1.2rem;
}


/* Blog Filters */
.blog-filters {
    background: var(--card-bg);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

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

.filters-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

/* Categories Section */
.blog-categories {
    padding: 3rem 0;
    background: var(--bg);
}

.blog-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

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

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

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

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text);
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--brand-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    padding: 4rem 0;
    margin: 3rem 0;
}

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

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

.newsletter-content p {
    color: var(--text-invert);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--text-invert);
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-secondary);
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    background: var(--text-invert);
    color: var(--brand-primary);
    border: 2px solid var(--text-invert);
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: transparent;
    color: var(--text-invert);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Resources Page */
.resources-section {
    padding: 4rem 0;
    background: var(--bg);
}

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

.resource-category {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.resource-category h2 {
    color: var(--brand-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.resource-category h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 2px;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-link {
    display: block;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.resource-link:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
    border-color: var(--brand-primary);
}

.resource-link:hover::before {
    transform: scaleY(1);
}

.resource-link h3 {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.resource-link:hover h3 {
    color: var(--brand-primary);
}

.resource-link p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.resource-highlight {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-invert);
    margin-top: 2rem;
}

.resource-highlight h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.resource-highlight p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.market-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.market-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-invert);
    margin-bottom: 0.5rem;
}

.market-stats .stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-invert);
    opacity: 0.9;
    font-weight: 500;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-meta {
    padding: 1.5rem 1.5rem 0.5rem;
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text);
    align-items: center;
    flex-wrap: wrap;
}

.category {
    /* background: var(--brand-light); */
    color: var(--brand-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
    white-space: nowrap;
}

.date, .read-time {
    font-size: 0.85rem;
    color: var(--text);
}

.blog-card h2,
.blog-card h3 {
    padding: 0.5rem 1.5rem 0;
    color: var(--text);
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.4;
    font-size: 1.25rem;
}

.summary {
    padding: 0 1.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    text-align: left;
    font-size: 0.95rem;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-top: 0;
}

.blog-card p {
    padding: 0 1.5rem;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
    font-size: 0.95rem;
}

.blog-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--card);
    color: var(--text);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.blog-categories .read-more {
    color: var(--brand-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.job-header h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text);
}

.job-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.job-type {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}


.job-description {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.job-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Full Width Join Our Team Section */
.join-our-team-fullwidth {
    background: linear-gradient(135deg, var(--card) 0%, var(--bg) 100%);
    margin: 0;
    padding: 4rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.join-our-team-content {
    width: 100%;
}

.job-cards-container {
    padding: 2rem 0;
    background: white;
    margin: 2rem 0;
}

/* Enhanced Job Offer Cards */
.job-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.job-offer-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.job-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-primary);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}

.job-type-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-type-badge.full-time {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
}

.job-type-badge.part-time {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
}

.job-type-badge.contract {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-secondary));
    color: white;
}


.job-card-content {
    padding: 0 1.5rem;
}

.job-card-content h3 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.job-card-content .job-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 1rem;
}

.location-icon {
    font-size: 1.1rem;
}

.job-summary {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.job-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text);
    border: 1px solid var(--border);
}

.highlight-icon {
    font-size: 1rem;
}

.job-card-footer {
    padding: 1.5rem;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-full:hover {
    transform: translateY(-1px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-full:hover .btn-arrow {
    transform: translateX(3px);
}

.job-details-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--brand-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-details-link:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}

.all-jobs-cta {
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--brand-light), var(--card));
    border-radius: 12px;
    border: 1px solid var(--brand-light);
}

.all-jobs-cta p {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Forms */
.application-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    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: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: var(--brand-light);
    color: var(--brand-primary);
    border: 1px solid var(--brand-light);
}

.alert-error {
    background-color: var(--brand-light);
    color: var(--brand-dark);
    border: 1px solid var(--brand-light);
}

/* Filters */
.filters-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filters-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.filter-group select,
.filter-group input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.filter-group select:focus,
.filter-group input[type="text"]:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(2, 187, 251, 0.1);
}

.filter-group select:hover,
.filter-group input[type="text"]:hover {
    border-color: var(--brand-light);
}

.filter-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-icon {
    margin-bottom: 1rem;
    color: var(--brand-600);
}

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

/* Application Process Section */
.application-process {
    background: var(--bg);
    padding: 4rem 0;
}

.application-process h2 {
    text-align: center;
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Footer */
.main-footer {
    background-color: var(--text);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-invert);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

/* Contact Info Section */
.contact-info {
    padding: 5rem 3rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.contact-info h2 {
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--brand-primary);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-invert);
}

.contact-text h3 {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-text a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--brand-secondary);
}

.social-contact {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.social-contact h3 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--text);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--brand-primary);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--text);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: var(--text-invert);
    font-size: 0.9rem;
}

.footer-copyright {
    color: var(--text-invert);
    font-size: 0.9rem;
}

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

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

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .services-overview {
        padding: 3rem 0;
    }
    
    .contact-info {
        padding: 3rem 2rem;
        margin: 1.5rem 0;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .social-contact {
        padding-top: 1.5rem;
    }
    
    .social-contact h3 {
        font-size: 1.25rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.mobile-active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 8px 8px;
        z-index: 1000;
    }
    
    .main-nav.mobile-active ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .main-nav.mobile-active li {
        margin: 0;
    }
    
    .main-nav.mobile-active a {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        transition: background-color 0.2s ease;
    }
    
    .main-nav.mobile-active a:hover {
        background-color: var(--card);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
        padding: 0;
        margin-top: 0.5rem;
        margin-left: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        margin: 0;
        font-size: 0.9rem;
        background-color: var(--card);
        border-radius: 4px;
        margin-bottom: 0.25rem;
    }
    
    .hero-section {
        padding: 0;
        margin: 0;
        height: 350px;
    }
    
    .hero-content {
        /* padding-top: 40vh; */
        /* padding-bottom: 0; */
    }
    
    .hero-cta-section {
        padding: 1.5rem 0;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .application-process {
        padding: 3rem 0;
    }
    
    .application-process h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .highlight-card {
        padding: 1.25rem 0.875rem;
    }
    
    .highlight-card h3 {
        font-size: 0.95rem;
    }
    
    .highlight-card p {
        font-size: 0.825rem;
    }
    
    .highlight-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        /* padding: 1rem 0; */
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .services-grid,
    .blog-grid,
    .jobs-grid,
    .job-cards-grid,
    .featured-jobs-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .locations-grid {
        padding: 1.5rem;
    }
    
    .location-card {
        padding: 1rem;
    }
    
    .location-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .location-card p {
        font-size: 0.85rem;
    }
    
    .featured-jobs {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .featured-jobs h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .featured-job-card {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .filters-form {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Full width section mobile adjustments */
    .join-our-team-fullwidth {
        padding: 3rem 0;
    }
    
    .job-cards-container {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .job-cards-grid {
        gap: 1.5rem;
    }
    
    .job-offer-card {
        margin: 0 10px;
    }
    
    /* Careers highlight mobile adjustments */
    .careers-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .careers-text {
        max-width: 100%;
    }
    
    .careers-text h2 {
        font-size: 2rem;
    }
    
    .careers-text p {
        font-size: 1.1rem;
    }
    
    .career-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        min-width: auto;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .services-overview {
        padding: 2rem 0;
    }
    
    .contact-info {
        padding: 2.5rem 1.5rem;
        margin: 1rem 0;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-info > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-details {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .social-contact {
        padding-top: 1rem;
    }
    
    .social-contact h3 {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 0;
        margin: 0;
        height: 110px;
    }
    
    .hero-content {
        /* padding-top: 35vh; */
        /* padding-bottom: 0; */
    }
    
    .hero-cta-section {
        padding: 1rem 0;
    }
    
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .application-process {
        padding: 2.5rem 0;
    }
    
    .application-process h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        padding: 1.25rem 1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .step h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .locations-overview {
        padding: 2.5rem 0;
    }
    
    .locations-overview h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .location-badge {
        padding: 1rem 0.5rem;
    }
    
    .location-name {
        font-size: 0.95rem;
    }
    
    .company-culture {
        padding: 2.5rem 0;
    }
    
    .culture-content {
        gap: 2rem;
    }
    
    .culture-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .culture-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .culture-list {
        max-width: 100%;
    }
    
    .culture-list li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        padding-left: 1.5rem;
    }
    
    .locations-overview h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
    }
    
    .location-badge {
        padding: 1.25rem 0.75rem;
    }
    
    .location-name {
        font-size: 1rem;
    }
    
    .company-culture {
        padding: 3rem 0;
    }
    
    .culture-content {
        gap: 2rem;
    }
    
    .culture-text h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .culture-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .culture-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .highlight-card {
        padding: 1rem 0.75rem;
    }
    
    .highlight-card h3 {
        font-size: 0.9rem;
    }
    
    .highlight-card p {
        font-size: 0.8rem;
    }
    
    .highlight-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        /* padding: 0.75rem 0; */
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-card h3 {
        font-size: 0.95rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .locations-grid {
        padding: 1rem;
    }
    
    .location-card {
        padding: 0.75rem;
    }
    
    .location-card h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .location-card p {
        font-size: 0.8rem;
    }
    
    .career-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat {
        padding: 0.5rem;
        border-radius: 6px;
    }
    
    .stat-number {
        font-size: 1.1rem;
        margin-bottom: 0.125rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .featured-jobs {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .featured-jobs h3 {
        font-size: 1.1rem;
    }
    
    .featured-job-card {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
    }
}

/* AI-Optimized Sections */
.answer-summary {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem 0;
    margin: 2rem 0;
}

.summary-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.summary-card h2 {
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.summary-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.sources {
    background: var(--card);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.sources h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.sources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources li {
    margin-bottom: 0.5rem;
}

.sources a {
    color: var(--brand-primary);
    text-decoration: none;
}

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


/* Error page styling */
.error-content {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.error-message h2 {
    color: var(--brand-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.error-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text);
}

.error-actions {
    margin-bottom: 3rem;
}

.error-actions .btn {
    margin: 0 0.5rem;
}

.helpful-links {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.helpful-links h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.helpful-links a:hover {
    text-decoration: underline;
}

/* Contact page styling */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--brand-600);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

/* Job highlights styling */
.job-highlights .highlight-icon {
    margin-bottom: 0;
}

.job-highlights .highlight-icon svg {
    width: 16px;
    height: 16px;
}

/* Blog section */
.blog-preview .text-center {
    padding: 2rem 0;
}

/* Blog responsive adjustments */
@media (max-width: 768px) {
    .blog-filters {
        padding: 1.5rem 0;
    }
    
    .filters-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .blog-categories {
        padding: 2rem 0;
    }
    
    .blog-categories h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.25rem;
    }
    
    .newsletter-signup {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        gap: 1rem;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 100%;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resource-category {
        padding: 2rem;
    }
    
    .resource-category h2 {
        font-size: 1.5rem;
    }
    
    .resource-link {
        padding: 1.25rem;
    }
    
    .resource-highlight {
        padding: 2rem;
    }
    
    .resource-highlight h2 {
        font-size: 2rem;
    }
    
    .resource-highlight p {
        font-size: 1.1rem;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .market-stats .stat {
        padding: 1.25rem;
    }
    
    .market-stats .stat-number {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-meta {
        padding: 1rem 1rem 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-card h2 {
        padding: 0.5rem 1rem 0;
        font-size: 1.1rem;
    }
    
    .blog-card p,
    .summary {
        padding: 0 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 0;
    }
    
    .blog-footer {
        padding: 0 1rem 1rem;
    }
    
    .blog-preview .text-center {
        padding: 1.5rem 0;
    }
}

/* Service Pages */
.service-detail {
    padding: 4rem 0;
    background: var(--bg);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-description h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.service-description h3 {
    color: var(--text);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-description li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-description li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-600);
    font-weight: bold;
}

.service-benefits h3 {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.benefit-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.benefit-item h4 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.service-cta {
    background: var(--brand-50);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--brand-200);
}

.service-cta h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.service-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-cta .btn {
    font-size: 1.1rem;
    padding: 0.875rem 2rem;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .service-detail {
        padding: 2rem 0;
    }
    
    .service-description h2 {
        font-size: 1.75rem;
    }
    
    .service-description h3 {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .service-cta {
        padding: 2rem 1.5rem;
    }
    
    .service-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-detail {
        padding: 1.5rem 0;
    }
    
    .service-description h2 {
        font-size: 1.5rem;
    }
    
    .service-description h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .service-cta {
        padding: 1.5rem 1rem;
    }
    
    .service-cta h3 {
        font-size: 1.25rem;
    }
    
    .service-cta p {
        font-size: 1rem;
    }
}

/* Blog Article Page */
.blog-article {
    padding: 2rem 0 4rem 0;
    background: var(--bg);
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-meta .category {
    background: var(--brand-100);
    color: var(--brand-700);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.article-meta .date,
.article-meta .read-time {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.article-header h1 {
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-author {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--text);
}

.article-content h2 {
    color: var(--text);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
}

.article-content h3 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

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

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.article-content blockquote {
    border-left: 4px solid var(--brand-500);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--brand-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.article-content code {
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.article-content pre {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.article-tags h3 {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.tag:hover {
    background: var(--brand-100);
    color: var(--brand-700);
}

.article-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--brand-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--brand-700);
    text-decoration: underline;
}

/* Related Articles */
.related-articles {
    background: var(--gray-50);
    padding: 3rem 0;
    margin-top: 2rem;
}

.related-articles h2 {
    color: var(--text);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.related-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.related-meta .category {
    background: var(--brand-100);
    color: var(--brand-700);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.related-meta .date {
    color: var(--text-secondary);
}

.related-card h3 {
    margin-bottom: 0.75rem;
}

.related-card h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-card h3 a:hover {
    color: var(--brand-600);
}

.related-card .summary {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.related-card .read-more {
    color: var(--brand-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.related-card .read-more:hover {
    color: var(--brand-700);
    text-decoration: underline;
}

/* Responsive Design for Blog Article */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 0 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
    
    .article-actions {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-articles {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-content {
        padding: 0 0.5rem;
    }
    
    .article-content h2 {
        font-size: 1.25rem;
    }
    
    .article-content h3 {
        font-size: 1.1rem;
    }
    
    .related-articles {
        padding: 1.5rem 0;
    }
    
    .related-card {
        padding: 1.25rem;
    }
}
