/* CSS Variables for Theme Management */
:root {
    /* Colors */
    --primary-blue: #003D82;
    --primary-blue-hover: #002d5f;
    --accent-color: #4F46E5;
    /* Electric Indigo */
    --accent-color-hover: #4338ca;
    --accent-light: #818cf8;
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1f2937;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-logo: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    /* Increased line-height for better readability */
    color: var(--text-medium);
    background-color: var(--bg-white);
}

/* Skip Navigation Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    outline: 2px solid #5b9585;
    outline-offset: 2px;
}

/* Apply Montserrat SemiBold to all headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

/* Top Banner */
.top-banner {
    background: var(--accent-color);
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 1000;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-badge {
    background: var(--accent-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner-text {
    font-size: 14px;
    font-weight: 500;
}

.banner-cta {
    background: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.banner-cta:hover {
    background: var(--accent-color-hover);
}

.banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.banner-close:hover {
    opacity: 1;
}

/* Navigation */
.navbar {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: none;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-logo:hover {
    text-decoration: none;
    color: #1a1a1a;
}

.nav-logo:visited {
    color: #1a1a1a;
    text-decoration: none;
}

.nav-logo:active {
    color: #1a1a1a;
    text-decoration: none;
}

.nav-logo:focus {
    color: #1a1a1a;
    text-decoration: none;
}

.logo-text {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.logo-text {
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-blue);
    line-height: 28px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #666;
}

/* Nav CTA Button */
.nav-cta-button {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-size: 27px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
}

.nav-cta-button:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.4);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-out;
    margin-top: 10px;
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: #f0f7f5;
    color: var(--accent-color);
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 8px 0;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: black;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle:hover .hamburger-line {
    background: var(--accent-color);
}

/* Show desktop nav on larger screens */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.mobile-menu-close:hover {
    opacity: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0;
    /* Increased touch target */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #8b5cf6;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

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

/* Hero and Consultation Section */
.hero-consultation {
    background: white;
    padding: 80px 0;
}

.hero-consultation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

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

.hero-header h1 {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 1000px;
    letter-spacing: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.illustration svg {
    max-width: 100%;
    height: auto;
}

.hero-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-card {
    background: #f8f9fa;
    padding: 40px 30px;
    text-decoration: none;
    color: #333;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-card:hover {
    background: var(--primary-blue);
    text-decoration: none;
    color: white;
}

.cta-card:hover .cta-title,
.cta-card:hover .cta-description {
    color: white;
}

.cta-icon {
    width: 100%;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
}

.cta-icon svg {
    width: 62px;
    height: 62px;
    stroke: #3cd756;
    stroke-width: 2.5;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

.cta-description {
    font-size: 1rem;
    color: #595959;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center;
}

.cta-link {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-link:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.4);
    color: white;
}

.cta-card:hover .cta-link {
    background: var(--primary-blue-hover);
}

/* Services Section */
.services {
    background: var(--accent-color);
    padding: 80px 0;
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--accent-color);
    border-radius: 0;
    margin: 0;
    border: none;
    text-decoration: none;
    color: inherit;
}

.service-item:hover {
    text-decoration: none;
    color: inherit;
}

.service-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: none;
    border-radius: 0;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
}

/* Hiring Process Section */
.hiring-process-section {
    background: white;
    padding: 0;
}

.hiring-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.hiring-process-content {
    background: var(--primary-blue);
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hiring-process-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
    line-height: 1.3;
}

.process-step {
    margin-bottom: 30px;
}

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

.process-step h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-step p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
}

.hiring-process-image {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

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

.placeholder-image {
    width: 100%;
    background: #f8f9fa;
    border: 2px dashed #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.placeholder-image p {
    font-size: 1rem;
    color: #999;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: var(--primary-blue);
    padding: 80px 0;
}

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

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.5rem;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-info strong {
    font-weight: 600;
    color: var(--accent-color);
}

/* Footer CTA */
.footer-cta {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.footer-cta-button {
    display: inline-block;
    background: white;
    color: #2c3e50;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
    color: white;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-bottom-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-company span {
    color: #999;
    font-size: 0.875rem;
    line-height: 1;
}

.footer-copyright {
    color: #999;
    font-size: 0.875rem;
    line-height: 1;
    text-align: center;
}

.footer-bottom-right span {
    color: #999;
    font-size: 0.875rem;
    line-height: 1;
}

.footer-linkedin {
    color: #999;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-linkedin:hover {
    color: white;
}

.footer-linkedin svg {
    width: 14px;
    height: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-consultation-content {
        gap: 30px;
    }

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

    .contact-info {
        max-width: 600px;
        padding: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-consultation {
        padding: 60px 0;
    }

    .services {
        padding: 60px 0;
    }

    .hiring-process-section {
        padding: 0;
    }

    .hiring-process-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hiring-process-content {
        padding: 80px 30px;
    }

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

    .process-step h3 {
        font-size: 1.3rem;
    }

    .placeholder-image {
        padding: 30px;
        min-height: 300px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .illustration svg {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 2rem;
    }

    .contact-info {
        max-width: 400px;
        padding: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .service-item h3 {
        font-size: 1.5rem;
    }

    .service-item p {
        font-size: 1rem;
    }

    .illustration svg {
        max-width: 400px;
    }

    .hero-consultation-grid {
        gap: 30px;
    }
}

/* Page Header Styles */
.page-header {
    background: var(--accent-color);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.page-header p {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 1000px;
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Services Content Styles */
.services-content {
    padding: 80px 0;
    background: white;
}

.service-detail {
    margin-bottom: 60px;
}

.service-detail h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    background: var(--accent-color);
    color: white;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: #eeebe4;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Training Content Styles */
.training-content {
    padding: 80px 0;
    background: white;
}

.training-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.module {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.module h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

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

.module li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.module li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: 600;
    position: absolute;
    left: 0;
}

.training-formats {
    background: #eeebe4;
    padding: 60px 0;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.format-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.format-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    background: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.benefit h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Blog Content Styles */
.blog-content {
    padding: 80px 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.blog-posts {
    display: grid;
    gap: 40px;
}

.blog-post {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
    padding: 30px;
}

.blog-post h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-post p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-sidebar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
}

.sidebar-section li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-section li:last-child {
    border-bottom: none;
}

.sidebar-section a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.sidebar-section a:hover {
    color: var(--accent-color);
}

.newsletter-signup {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.newsletter-signup input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.newsletter-signup button {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-signup button:hover {
    background: #4a7d70;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .service-detail h2 {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .training-modules {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .format-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        padding: 30px;
    }

    .services-content,
    .training-content,
    .blog-content {
        padding: 60px 0;
    }

    .page-header {
        padding: 60px 0 40px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .service-detail h2 {
        font-size: 1.6rem;
    }

    .step,
    .module,
    .format-card {
        padding: 20px;
    }

    .blog-sidebar {
        padding: 20px;
    }

    .blog-post-content {
        padding: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* CSS Grid Fallbacks for older browsers */
@supports not (display: grid) {

    .difference-grid,
    .service-grid,
    .process-steps,
    .training-modules,
    .format-grid,
    .benefits-grid,
    .footer-columns {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .difference-card,
    .service-item,
    .step,
    .module,
    .format-card,
    .benefit,
    .footer-column {
        flex: 1 1 calc(33.333% - 30px);
        min-width: 250px;
    }
}

/* Flexbox fallback for older Safari versions */
.difference-grid,
.service-grid,
.hiring-process-grid {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Ensure flex items shrink properly in older Safari */
.cta-card,
.difference-card,
.service-item {
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

/* Utility Classes for Inline Style Replacement */
.hero-padding-lg {
    padding: 100px 0 40px 0;
    /* Increased padding */
}

.hero-padding-md {
    padding: 80px 0 40px 0;
    /* Increased padding */
}

.services-padding-extended {
    padding: 60px 0 100px 0;
    /* Increased padding */
}

.services-padding-top {
    padding-top: 20px;
}

.illustration-spacing {
    margin-bottom: 60px;
}

.bg-primary-blue {
    background-color: #003D82;
}

.img-contained {
    object-fit: contain;
    padding: 40px;
}

.text-2xl {
    font-size: 2rem;
}

.text-4xl {
    font-size: 4.5rem;
}

.text-1-5xl {
    font-size: 1.5rem;
}

.centered-content {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centered-text-block {
    line-height: 1.6;
    font-weight: 400;
    color: #000;
}

.team-photo {
    max-width: 360px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.team-photo-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name {
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1;
    color: #000;
    text-align: center;
}

.team-title {
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1;
    color: #000;
    text-align: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.sortiq-text {
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, sans-serif;
    font-weight: 700;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.3);
    text-decoration: none;
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 61, 130, 0.2);
}

/* Enhanced Focus styles for accessibility */
.cta-button:focus,
.submit-button:focus,
.form-group input:focus,
.newsletter-signup input:focus,
.newsletter-signup button:focus,
.nav-link:focus,
.nav-cta-button:focus,
.mobile-nav-link:focus,
.footer-column a:focus,
.process-cta-button:focus,
.cta-link:focus {
    outline: 3px solid #5b9585;
    outline-offset: 2px;
}

/* Improve focus for buttons */
button:focus,
a:focus {
    outline: 2px solid #5b9585;
    outline-offset: 2px;
}

/* Process CTA Button */
.process-cta {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
}

.process-cta-button {
    background: #08833d;
    color: white;
    text-decoration: none;
    font-size: 27px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.process-cta-button:hover {
    background: #066a31;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 131, 61, 0.4);
    text-decoration: none;
    color: white;
}

/* SortIQ Difference Section */
.sortiq-difference-section {
    background: white;
    padding: 80px 0;
}

.sortiq-difference-section h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.3;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.difference-card {
    background: #f8f9fa;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.difference-card:hover {
    background: var(--primary-blue);
}

.difference-card:hover h3,
.difference-card:hover p {
    color: white;
}

.difference-card h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.difference-card p {
    font-size: 1rem;
    color: #595959;
    line-height: 1.6;
}

/* SortIQ Screening Process Section */
.screening-process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.screening-process-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.3;
}

.screening-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.screening-item {
    background: white;
    padding: 30px 40px;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 4px solid #3cd756;
}

.screening-item:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.screening-item h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.screening-item p {
    font-size: 1.1rem;
    color: #595959;
    line-height: 1.6;
}

/* Responsive styles for new sections */
@media (max-width: 968px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sortiq-difference-section {
        padding: 60px 0;
    }

    .sortiq-difference-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .difference-card {
        padding: 30px 25px;
    }

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

    .screening-process-section {
        padding: 60px 0;
    }

    .screening-process-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .screening-item {
        padding: 25px 30px;
    }
}

/* Extra small devices */
@media (max-width: 374px) {
    .hero-header h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .nav-cta-button {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-header h1 {
        font-size: 2rem;
    }

    .difference-card {
        padding: 25px 20px;
    }

    .difference-card h3 {
        font-size: 1.3rem;
    }

    .screening-process-section h2 {
        font-size: 1.8rem;
    }

    .screening-item {
        padding: 20px 25px;
    }

    .screening-item h3 {
        font-size: 1.3rem;
    }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-direct {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.contact-direct p {
    margin-bottom: 5px;
    font-size: 1rem;
}

/* Scroll Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children if needed */
.fade-in-section.delay-100 {
    transition-delay: 0.1s;
}

.fade-in-section.delay-200 {
    transition-delay: 0.2s;
}