/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.AN-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.AN-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.AN-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.AN-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    min-height: 72px;
}

.AN-nav-brand {
    display: flex;
    align-items: center;
}

.AN-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.AN-brand-link:hover {
    color: #0066cc;
}

.AN-logo {
    height: 32px;
    width: auto;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.AN-logo:hover {
    transform: scale(1.05);
}

.AN-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
}

.AN-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.AN-nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.AN-nav-link:hover {
    color: #0066cc;
}

/* Desktop-only Navbar Styles - Ensure proper dropdown behavior */
@media (min-width: 769px) {
    .AN-nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .AN-nav-content {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-direction: row;
    }
    
    .AN-nav-dropdown:hover .AN-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .AN-nav-toggle {
        display: none;
    }
    
    .AN-nav-overlay {
        display: none;
    }
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
    .AN-nav-toggle {
        display: flex;
        z-index: 10003;
    }
    
    .AN-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        max-width: 260px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 10001;
        padding: 0;
    }
    
    .AN-nav-menu.active {
        right: 0;
        z-index: 10002 !important;
    }
    
    .AN-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10000;
    }
    
    .AN-nav-menu.active .AN-nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .AN-nav-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 0 20px 0;
        height: 100%;
        overflow-y: auto;
        position: relative;
        z-index: 10001;
        background: white;
    }
    
    .AN-nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f1f1f1;
        font-size: 1rem;
        color: #333333;
    }
    
    .AN-nav-link::after {
        display: none;
    }
    
    .AN-nav-link:hover {
        background: #f8f9fa;
        color: #0066cc;
    }
    
    .AN-nav-cta {
        margin: 1rem 2rem;
        padding: 1rem 1.5rem !important;
        text-align: center;
        border-radius: 8px;
        border: none;
    }
    
    /* Mobile Dropdown */
    .AN-nav-dropdown {
        border-bottom: 1px solid #f1f1f1;
    }
    
    .AN-dropdown-toggle {
        padding: 1rem 2rem;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        font-size: 1rem;
        color: #333333;
        display: flex;
        align-items: center;
    }
    
    .AN-dropdown-toggle:hover {
        background: #f8f9fa;
        color: #0066cc;
    }
    
    .AN-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f9fa;
        padding: 0;
        display: none;
    }
    
    .AN-nav-dropdown.active .AN-dropdown-menu {
        display: block;
    }
    
    .AN-dropdown-item {
        padding: 0.75rem 3rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .AN-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .AN-dropdown-item:hover {
        background: #e9ecef;
    }
}

/* Extra small mobile devices - ensure menu isn't too wide */
@media (max-width: 480px) {
    .AN-nav-menu {
        width: 60%;
        max-width: 240px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .AN-nav-menu {
        width: 55%;
        max-width: 220px;
    }
}

/* Mobile Menu Force Z-Index - Extra Safety */
@media (max-width: 768px) {
    .AN-nav-menu.active,
    .AN-nav-menu.active * {
        z-index: 10002 !important;
    }
    
    .AN-nav-toggle.active {
        z-index: 10003 !important;
    }
    
    /* Ensure menu content is clickable */
    .AN-nav-content,
    .AN-nav-content * {
        pointer-events: auto !important;
        position: relative;
        z-index: 10002 !important;
    }
    
    /* Force menu to be visible */
    .AN-nav-menu.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Fix Services Dropdown Styling - Desktop */
@media (min-width: 769px) {
    /* Make dropdown toggle look like regular nav links */
    .AN-dropdown-toggle {
        background: none !important;
        border: none !important;
        color: #333333;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 0.5rem 0;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .AN-dropdown-toggle:hover {
        color: #0066cc;
        background: none !important;
    }
    
    /* Hide the CSS-generated arrow since we have SVG arrow */
    .AN-dropdown-toggle::after {
        display: none !important;
    }
    
    /* Add underline effect like other nav links */
    .AN-dropdown-toggle::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background: #0066cc;
        transition: width 0.3s ease;
    }
    
    .AN-dropdown-toggle:hover::before {
        width: 100%;
    }
    
    /* Style the SVG arrow */
    .AN-dropdown-arrow {
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    /* Rotate SVG arrow on hover */
    .AN-nav-dropdown:hover .AN-dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Ensure dropdown appears on hover */
    .AN-nav-dropdown:hover .AN-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile dropdown arrow rotation */
@media (max-width: 768px) {
    .AN-nav-dropdown.active .AN-dropdown-arrow {
        transform: rotate(180deg);
    }
}
/* Extra safety for z-index stacking */
body.nav-open .AN-nav-menu {
    z-index: 10002 !important;
}

body.nav-open .AN-nav-toggle {
    z-index: 10003 !important;
}

/* Fix hamburger menu styling - update selectors to match HTML */
.AN-nav-toggle .AN-hamburger-line {
    width: 24px;
    height: 2px;
    background: #333333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
}

.AN-nav-toggle.active .AN-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.AN-nav-toggle.active .AN-hamburger-line:nth-child(2) {
    opacity: 0;
}

.AN-nav-toggle.active .AN-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Ensure hamburger button is visible on mobile */
@media (max-width: 768px) {
    .AN-nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        background: none;
        border: none;
        z-index: 10003;
    }
    
    .AN-nav-toggle:hover {
        background: rgba(0, 0, 0, 0.04);
    }
}

.AN-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0066cc;
    transition: width 0.3s ease;
}

.AN-nav-link:hover::after {
    width: 100%;
}

.AN-nav-dropdown {
    position: relative;
}

.AN-dropdown-toggle {
    position: relative;
    cursor: pointer;
}

.AN-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.AN-dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

.AN-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 8px 0;
}

.AN-nav-dropdown:hover .AN-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.AN-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.AN-dropdown-item:hover {
    background: #f8f9fa;
    color: #0066cc;
}

.AN-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.AN-nav-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
}

.AN-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #333333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.AN-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.AN-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.AN-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
.AN-main {
    margin-top: 72px;
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.AN-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.AN-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

.AN-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.AN-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.AN-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 80vh;
}

.AN-hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.AN-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.AN-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.AN-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.AN-hero-sidebar {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 2rem;
}

.AN-hero-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #333333;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInRight 1s ease-out 0.3s both;
}

.AN-hero-card-icon {
    width: 48px;
    height: 48px;
    background: #0066cc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.AN-hero-card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
    line-height: 1.3;
}

.AN-hero-card-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #666666;
    line-height: 1.5;
}

.AN-phone-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.AN-phone-link:hover {
    background: #0066cc;
    color: white;
}

.AN-phone-note {
    font-size: 0.8rem;
    color: #888888;
    font-style: italic;
    margin-bottom: 0 !important;
    text-align: center;
}

/* Page Hero */
.AN-page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.AN-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 68, 153, 0.9) 100%);
    z-index: 1;
}

.AN-page-hero > * {
    position: relative;
    z-index: 2;
}

.AN-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.AN-page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.AN-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
}

.AN-btn-primary {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.AN-btn-primary:hover {
    background: #0052a3;
    border-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
    color: white; /* Ensure color stays white */
}

.AN-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.AN-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-1px);
}

.AN-btn-outline {
    background: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.AN-btn-outline:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.AN-btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.AN-btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.AN-btn-link {
    background: none;
    color: #0066cc;
    padding: 0;
    text-decoration: underline;
    border: none;
}

.AN-btn-link:hover {
    color: #0052a3;
    text-decoration: none;
}

/* Stats Section */
.AN-stats-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
}

.AN-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.AN-stat-item {
    padding: 1.5rem;
}

.AN-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.AN-stat-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Capabilities Section */
.AN-capabilities-section {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid #e5e5e5;
}

.AN-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.AN-capability-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.AN-capability-item:hover {
    background: #1a1a1a; /* Change from light to dark */
    transform: translateY(-2px);
    color: white; /* Make text white on dark background */
}

.AN-capability-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    transition: all 0.3s ease;
}

.AN-capability-item:hover .AN-capability-icon {
    background: #0066cc;
    color: white;
    transform: scale(1.05);
}

.AN-capability-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
    transition: color 0.3s ease; /* Add transition for text color */
}

.AN-capability-item:hover h3 {
    color: white; /* Make title white on hover */
}

/* Services Section */
.AN-services-overview {
    padding: 100px 0;
    background: #ffffff;
}

.AN-section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.AN-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333333;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.AN-section-header p {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.6;
}

.AN-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.AN-services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .AN-services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .AN-services-grid-3 {
        grid-template-columns: 1fr;
    }
}

.AN-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.AN-service-card:hover {
    background: #1a1a1a; /* Change to dark background */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: #333333;
    color: white; /* Make text white */
}

.AN-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.AN-service-card:hover h3 {
    color: white; /* Make title white on hover */
}

.AN-service-card p {
    color: #666666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.AN-service-card:hover p {
    color: #e0e0e0; /* Make paragraph text light gray on hover */
}

.AN-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.AN-service-card:hover .AN-service-icon {
    background: #0066cc;
}

.AN-service-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(91%) saturate(5663%) hue-rotate(208deg) brightness(97%) contrast(101%);
}

.AN-service-card:hover .AN-service-icon img {
    filter: brightness(0) invert(1);
}

.AN-service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.AN-service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #555555;
}

.AN-service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
}

.AN-service-list li:last-child {
    border-bottom: none;
}

/* Why Choose Us */
.AN-why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.AN-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.AN-feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.AN-feature-item:hover {
    background: #1a1a1a; /* Change to dark background */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: #333333;
    color: white; /* Make text white */
}

.AN-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    transition: all 0.3s ease;
}

.AN-feature-item:hover .AN-feature-icon {
    background: #0066cc;
    color: white;
}

.AN-feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.AN-feature-item:hover h3 {
    color: white; /* Make title white on hover */
}

.AN-feature-item p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.AN-feature-item:hover p {
    color: #e0e0e0; /* Make paragraph text light gray on hover */
}

/* Service Details */
.AN-service-details {
    padding: 80px 0;
}

.AN-service-intro {
    text-align: center;
    margin-bottom: 4rem;
}

/* Accreditations Row */
.AN-accreditations-row {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.AN-accreditations-row .AN-container {
    text-align: center;
}

.AN-accreditations-row h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.AN-accreditations-row p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.AN-accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.AN-accreditation-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.AN-accreditation-item:hover {
    background: #1a1a1a; /* Change to dark background */
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: #333333;
    color: white; /* Make text white */
}

.AN-accreditation-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0066cc;
    font-weight: 700;
    transition: all 0.3s ease;
}

.AN-accreditation-item:hover .AN-accreditation-logo {
    background: #0066cc;
    color: white;
    transform: scale(1.05);
}

.AN-accreditation-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.AN-accreditation-item:hover .AN-accreditation-text h3 {
    color: white; /* Make title white on hover */
}

.AN-accreditation-text p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsiveness for accreditations */
@media (max-width: 768px) {
    .AN-accreditations-row {
        padding: 40px 0;
    }
    
    .AN-accreditations-row h2 {
        font-size: 1.75rem;
    }
    
    .AN-accreditations-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.5rem;
    }
    
    .AN-accreditation-item {
        padding: 1.5rem 1rem;
    }
    
    .AN-accreditation-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Footer */
.AN-footer {
    background-color: #333333;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.AN-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.AN-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.AN-footer-section h3,
.AN-footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.AN-footer-section p,
.AN-footer-section ul {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.AN-footer-section ul {
    list-style: none;
    padding: 0;
}

.AN-footer-section ul li {
    margin-bottom: 0.5rem;
}

.AN-footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.AN-footer-section a:hover {
    color: #0066cc;
}

.AN-footer-brand {
    display: flex;
    flex-direction: column;
}

.AN-footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

.AN-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555555;
    font-size: 0.85rem;
    color: #999999;
}

/* Simple Footer for Admin Pages */
.AN-footer-simple {
    background: #333333;
    padding: 2rem 0;
    margin-top: 3rem;
}

.AN-footer-simple .AN-footer-bottom {
    border: none;
    padding: 0;
    text-align: center;
    color: #cccccc;
}

.AN-footer-simple .AN-footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Admin Styles */
.AN-admin-login {
    padding: 100px 0;
    background: #f8f9fa;
}

.AN-login-container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.AN-login-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.AN-login-form {
    margin-bottom: 1rem;
}

.AN-login-info {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.AN-admin-dashboard {
    padding: 80px 0;
}

.AN-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.AN-dashboard-header h1 {
    color: #2c3e50;
}

.AN-dashboard-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.AN-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.AN-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.AN-stat-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.AN-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.AN-dashboard-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.AN-dashboard-section h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.AN-contacts-table {
    overflow-x: auto;
}

.AN-contacts-table table {
    width: 100%;
    border-collapse: collapse;
}

.AN-contacts-table th,
.AN-contacts-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.AN-contacts-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.AN-message-cell {
    max-width: 300px;
}

.AN-message-preview {
    position: relative;
}

.AN-full-message {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Alerts */
.AN-alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.AN-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.AN-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.AN-alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Latest Insights Section */
.AN-insights-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.AN-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.AN-insight-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.AN-insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.AN-insight-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.AN-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.AN-insight-content {
    padding: 1.5rem;
}

.AN-insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.AN-insight-type {
    background: #0066cc;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.AN-insight-date {
    font-size: 0.85rem;
    color: #666666;
}

.AN-insight-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.AN-insight-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.AN-insight-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.AN-insight-link:hover {
    color: #004499;
    text-decoration: underline;
}

.AN-insights-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Partners Section */
.AN-partners-section {
    background: white;
    padding: 100px 0;
}

.AN-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.AN-partner-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.AN-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: white;
}

.AN-partner-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.AN-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.AN-partner-card:hover .AN-partner-logo img {
    filter: grayscale(0%);
}

.AN-partner-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.AN-partner-placeholder::after {
    content: '🤝';
    font-size: 2rem;
    opacity: 0.7;
}

.AN-partner-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.AN-partner-category {
    color: #0066cc;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem !important;
}

.AN-partner-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.AN-btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .AN-partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .AN-partner-card {
        padding: 1.5rem;
    }
}

/* Partnerships Section */
.AN-partnerships-section {
    background: white;
    padding: 100px 0;
}

.AN-partnerships-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.AN-partnerships-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.AN-partnerships-text p {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.AN-partnerships-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.AN-partnerships-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpace OnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e5e5" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Modern Admin Login Styles */
.AN-admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
}

.AN-login-container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.AN-login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.AN-login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.AN-login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

.AN-login-form {
    margin-bottom: 1.5rem;
}

.AN-form-group {
    margin-bottom: 1.5rem;
}

.AN-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
}

.AN-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    background: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.AN-form-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.AN-form-input:hover {
    border-color: #d0d0d0;
}

.AN-form-actions {
    margin-top: 2rem;
}

.AN-form-actions .AN-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.AN-login-info {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Modern Admin Dashboard Styles */
.AN-dashboard-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.AN-dashboard-title p {
    color: #e5e5e5;
    font-size: 1.125rem;
    margin: 0;
}

.AN-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 2rem 0;
}

.AN-dashboard-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.AN-dashboard-actions .AN-btn {
    white-space: nowrap;
}

/* Stats Container */
.AN-stats-container {
    margin: 0;
}

.AN-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 0;
}

.AN-stat {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.AN-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.AN-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.AN-stat-label {
    display: block;
    color: #666666;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Table Styles */
.AN-admin-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.AN-admin-table-wrapper {
    overflow-x: auto;
}

.AN-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.AN-admin-table th {
    background: #f8f9fa;
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #333333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e5e5;
}

.AN-admin-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #333333;
    font-size: 0.95rem;
    vertical-align: top;
}

.AN-admin-table tr:hover td {
    background: #f8f9fa;
}

.AN-admin-table tr:last-child td {
    border-bottom: none;
}

/* Admin Table Responsive Improvements */
@media (max-width: 1024px) {
    .AN-admin-table th:nth-child(4),
    .AN-admin-table td:nth-child(4) {
        display: none; /* Hide Company column on smaller screens */
    }
}

@media (max-width: 768px) {
    .AN-admin-table th:nth-child(5),
    .AN-admin-table td:nth-child(5) {
        display: none; /* Hide Service column on mobile */
    }
    
    .AN-admin-table th,
    .AN-admin-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .AN-message-cell {
        max-width: 180px;
        min-width: 120px;
    }
}

/* Message Cell Improvements */
.AN-message-cell {
    max-width: 350px;
    min-width: 250px;
}

.AN-message-preview {
    position: relative;
    line-height: 1.5;
}

.AN-btn-link {
    background: none;
    border: none;
    color: #0066cc;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0;
    margin-left: 0.5rem;
}

.AN-btn-link:hover {
    color: #004499;
    text-decoration: underline;
}

.AN-full-message {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Small Button Style */
.AN-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Empty State */
.AN-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666666;
}

.AN-empty-state p {
    font-size: 1.125rem;
    margin: 0;
}

/* Contact Page Styles */
.AN-hero-simple {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.AN-hero-simple .AN-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.AN-hero-simple .AN-hero-description {
    font-size: 1.25rem;
    color: #e5e5e5;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Contact Hero */
.AN-hero-contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 8rem 0 6rem;
    color: white;
    overflow: hidden;
    position: relative;
}

.AN-hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.AN-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.AN-hero-contact .AN-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.AN-hero-contact .AN-hero-description {
    font-size: 1.3rem;
    color: #e5e5e5;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.AN-hero-features {
    margin-bottom: 2.5rem;
}

.AN-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #ffffff;
}

.AN-hero-feature svg {
    color: #0066cc;
    flex-shrink: 0;
}

.AN-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.AN-hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.AN-hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.AN-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.AN-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.2) 0%, rgba(0, 102, 204, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.AN-hero-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.AN-hero-badge svg {
    color: #0066cc;
}

/* Contact Section */
.AN-contact-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.AN-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info */
.AN-contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.AN-contact-info > p {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.AN-contact-methods {
    margin-bottom: 3rem;
}

.AN-contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.AN-contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.AN-method-icon {
    width: 48px;
    height: 48px;
    background: #f0f8ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    flex-shrink: 0;
}

.AN-method-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.AN-method-details p {
    color: #666666;
    margin: 0;
    font-size: 0.95rem;
}

/* Business Hours */
.AN-contact-hours h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
}

.AN-hours-grid {
    display: grid;
    gap: 0.75rem;
}

.AN-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.AN-hours-item span:first-child {
    color: #333333;
    font-weight: 500;
}

.AN-hours-item span:last-child {
    color: #666666;
}

.AN-hours-item.AN-emergency {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-color: #0066cc;
}

.AN-hours-item.AN-emergency span:first-child {
    color: #0066cc;
    font-weight: 600;
}

.AN-hours-item.AN-emergency span:last-child {
    color: #004499;
    font-weight: 600;
}

/* Contact Form */
.AN-contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.AN-contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.AN-contact-form {
    display: grid;
    gap: 1.5rem;
}

.AN-form-group {
    display: flex;
    flex-direction: column;
}

.AN-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
}

.AN-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    background: #ffffff;
    transition: all 0.2s ease;
    font-family: inherit;
}

.AN-form-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.AN-form-input:hover {
    border-color: #d0d0d0;
}

.AN-form-input[type="textarea"],
textarea.AN-form-input {
    resize: vertical;
    min-height: 120px;
}

.AN-contact-form .AN-btn {
    margin-top: 1rem;
    justify-self: start;
}

/* FAQ Section */
.AN-faq-section {
    padding: 6rem 0;
    background: white;
}

.AN-faq-section .AN-section-header {
    margin-bottom: 4rem;
}

.AN-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.AN-faq-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.AN-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: white;
}

.AN-faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.AN-faq-item p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* About Page Specific Styles */
.AN-about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.AN-about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.AN-about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.AN-about-image {
    position: relative;
}

.AN-content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.AN-content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Approach Features */
.AN-approach-features {
    margin-top: 2rem;
}

.AN-approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.AN-approach-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.AN-approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Enhanced section spacing */
.AN-services-overview {
    padding: 6rem 0;
}

.AN-services-overview:first-of-type {
    padding-top: 4rem;
}

.AN-why-choose-us {
    padding: 6rem 0;
}

.AN-stats-section {
    padding: 4rem 0;
}

.AN-section-light {
    padding: 6rem 0;
}

/* Enhanced About Page Approach Section - Improved Readability */
.AN-section-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.AN-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.AN-approach-text {
    padding: 2rem;
}

.AN-approach-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
}

.AN-approach-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.AN-approach-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.AN-approach-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.AN-approach-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.AN-approach-feature-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.AN-approach-feature-list li::before {
    content: '✓';
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.AN-approach-feature-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.AN-approach-feature-list li span {
    line-height: 1.6;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Approach Image Styling */
.AN-approach-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.AN-approach-image-container:hover {
    transform: translateY(-10px);
}

.AN-approach-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.AN-approach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.AN-approach-image-container:hover .AN-approach-overlay {
    opacity: 1;
}

.AN-approach-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.AN-approach-image-container:hover .AN-approach-badge {
    transform: translateY(0);
}

.AN-approach-badge svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.AN-badge-text {
    display: flex;
    flex-direction: column;
}

.AN-badge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.AN-badge-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced About Page Sections */

/* Who We Are Section Improvements */
.AN-about-intro {
    margin-bottom: 2.5rem;
}

.AN-about-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.AN-about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 16px;
    color: black;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.AN-highlight-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    flex-shrink: 0;
}

.AN-highlight-icon svg {
    color: black;
}

.AN-highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: black;
}

.AN-highlight-content p {
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.AN-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Mission & Vision Section */
.AN-mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.AN-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.AN-mission-card,
.AN-vision-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.AN-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
}

.AN-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #059669, #10b981);
}

.AN-mission-card:hover,
.AN-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.AN-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.AN-card-icon {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.AN-icon-mission {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.AN-icon-vision {
    background: linear-gradient(135deg, #059669, #10b981);
}

.AN-card-icon svg {
    color: white;
}

.AN-card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.AN-card-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .AN-mission-vision-grid {
        gap: 2rem;
    }
    
    .AN-mission-card,
    .AN-vision-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .AN-mission-vision-section {
        padding: 4rem 0;
    }
    
    .AN-mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .AN-mission-card,
    .AN-vision-card {
        padding: 2rem;
    }
    
    .AN-card-header h3 {
        font-size: 1.5rem;
    }
    
    .AN-about-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .AN-image-badge {
        position: static;
        margin-top: 1rem;
        align-self: flex-start;
    }
}

/* Section Base Styles */
.AN-section {
    padding: 4rem 0;
}

.AN-section-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.AN-section-light {
    background: #f8f9fa;
    color: #333333;
}

.AN-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.AN-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.AN-section-light .AN-section-header h2 {
    color: #333333;
}

.AN-section-dark .AN-section-header h2 {
    color: #ffffff;
}

.AN-section-header p {
    font-size: 1.125rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.AN-section-dark .AN-section-header p {
    color: #e5e5e5;
}

/* About Page Responsive Styles */
@media (max-width: 768px) {
    .AN-about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .AN-about-text {
        text-align: center;
    }
    
    .AN-services-overview,
    .AN-why-choose-us {
        padding: 3rem 0;
    }
    
    .AN-stats-section {
        padding: 2rem 0;
    }
}
/* AN Approach Enhanced Section - Unique Classes */
.AN-approach-enhanced-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.AN-approach-enhanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

/* Text Content */
.AN-approach-enhanced-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.AN-approach-enhanced-header h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.AN-approach-enhanced-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.AN-approach-enhanced-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Benefit Cards */
.AN-approach-enhanced-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.AN-approach-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.AN-approach-benefit-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.AN-approach-benefit-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.AN-approach-benefit-card:hover::before {
    transform: scaleY(1);
}

.AN-approach-benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 10px;
    padding: 0.75rem;
    flex-shrink: 0;
}

.AN-approach-benefit-icon svg {
    color: black;
}

.AN-approach-benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.AN-approach-benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Visual Content */
.AN-approach-enhanced-visual {
    position: relative;
}

.AN-approach-enhanced-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.AN-approach-enhanced-image-container:hover {
    transform: translateY(-8px);
}

.AN-approach-enhanced-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.AN-approach-enhanced-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.AN-approach-enhanced-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.AN-approach-enhanced-badge-icon {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 12px;
    padding: 0.75rem;
    flex-shrink: 0;
}

.AN-approach-enhanced-badge-icon svg {
    color: white;
}

.AN-approach-enhanced-badge-text {
    display: flex;
    flex-direction: column;
}

.AN-approach-enhanced-badge-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.AN-approach-enhanced-badge-subtitle {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Overlay */
.AN-approach-enhanced-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.AN-approach-enhanced-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.AN-approach-enhanced-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.AN-approach-enhanced-stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .AN-approach-enhanced-grid {
        gap: 3rem;
    }
    
    .AN-approach-enhanced-header h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .AN-approach-enhanced-content {
        padding: 0 1rem;
    }
    
    .AN-approach-enhanced-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .AN-approach-enhanced-header h3 {
        font-size: 1.75rem;
    }
    
    .AN-approach-benefit-card {
        padding: 1.25rem;
    }
    
    .AN-approach-enhanced-img {
        height: 350px;
    }
    
    .AN-approach-enhanced-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .AN-approach-enhanced-stat {
        padding: 0.75rem 0.5rem;
    }
    
    .AN-approach-enhanced-badge {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .AN-approach-enhanced-benefits {
        gap: 1rem;
    }
    
    .AN-approach-benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .AN-approach-enhanced-stats {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

/* Enhanced Call-to-Action Section - Unique Classes */
.AN-cta-enhanced-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.AN-cta-enhanced-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.AN-cta-enhanced-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    overflow: hidden;
}

.AN-cta-enhanced-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, rgba(37,99,235,0.03) 1px, transparent 1px),
                      linear-gradient(rgba(37,99,235,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.AN-cta-enhanced-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.95) 0%, 
        rgba(59, 130, 246, 0.9) 50%, 
        rgba(37, 99, 235, 0.95) 100%);
}

.AN-cta-enhanced-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.1);
}

.AN-cta-enhanced-header {
    margin-bottom: 3rem;
}

.AN-cta-enhanced-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.AN-cta-enhanced-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.AN-cta-enhanced-badge svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.AN-cta-enhanced-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.AN-cta-enhanced-header p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.AN-cta-enhanced-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.AN-cta-enhanced-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.AN-cta-enhanced-feature:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.AN-cta-enhanced-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
    padding: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.AN-cta-enhanced-feature:hover svg {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.1);
}

.AN-cta-enhanced-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.AN-cta-enhanced-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: black;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.AN-cta-enhanced-btn-primary::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.6s ease;
}

.AN-cta-enhanced-btn-primary:hover::before {
    left: 100%;
}

.AN-cta-enhanced-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.4);
}

.AN-cta-enhanced-btn-primary svg {
    transition: transform 0.3s ease;
}

.AN-cta-enhanced-btn-primary:hover svg {
    transform: translateX(4px);
}

.AN-cta-enhanced-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: 2px solid rgba(37, 99, 235, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.AN-cta-enhanced-btn-secondary:hover {
    background: var(--primary-color);
    color: black;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.AN-cta-enhanced-trust {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.AN-cta-enhanced-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.AN-cta-enhanced-trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.AN-cta-enhanced-trust-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .AN-cta-enhanced-content {
        padding: 3rem;
    }
    
    .AN-cta-enhanced-header h2 {
        font-size: 2.5rem;
    }
    
    .AN-cta-enhanced-features {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .AN-cta-enhanced-section {
        padding: 6rem 0;
    }
    
    .AN-cta-enhanced-content {
        padding: 2.5rem;
        margin: 0 1rem;
        border-radius: 24px;
    }
    
    .AN-cta-enhanced-header h2 {
        font-size: 2rem;
    }
    
    .AN-cta-enhanced-header p {
        font-size: 1.125rem;
    }
    
    .AN-cta-enhanced-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .AN-cta-enhanced-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .AN-cta-enhanced-btn-primary,
    .AN-cta-enhanced-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .AN-cta-enhanced-trust {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .AN-cta-enhanced-content {
        padding: 2rem;
        margin: 0 0.5rem;
    }
    
    .AN-cta-enhanced-header h2 {
        font-size: 1.75rem;
    }
    
    .AN-cta-enhanced-trust {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .AN-cta-enhanced-trust-number {
        font-size: 1.5rem;
    }
}
/* Service Page Specific Styles */
.AN-hero-service {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.AN-hero-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-pattern.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.AN-hero-service .AN-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.AN-hero-service .AN-hero-text {
    text-align: left;
}

.AN-hero-service .AN-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.AN-service-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.AN-service-hero-img:hover {
    transform: scale(1.05);
}

.AN-service-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.AN-service-placeholder svg {
    color: rgba(255, 255, 255, 0.6);
}

.AN-hero-service .AN-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.AN-hero-service .AN-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Service Details Section */
.AN-service-details {
    padding: 6rem 0;
    background: #f8fafc;
}

.AN-service-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.AN-service-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.AN-service-intro p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Offerings */
.AN-service-offerings {
    margin-bottom: 5rem;
}

.AN-service-offerings h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.AN-offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.AN-offering-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.AN-offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.AN-offering-card:hover::before {
    transform: scaleX(1);
}

.AN-offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.AN-offering-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.AN-offering-card:hover .AN-offering-icon {
    transform: scale(1.1);
}

.AN-offering-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.AN-offering-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.AN-offering-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.AN-offering-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.AN-offering-features li {
    color: #475569;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.AN-offering-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* Service Benefits */
.AN-service-benefits {
    background: white;
    padding: 4rem 0;
    border-radius: 24px;
    margin-top: 3rem;
}

.AN-service-benefits h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.AN-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.AN-benefit-item {
    text-align: center;
    padding: 2rem 1rem;
}

.AN-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.AN-benefit-item:hover .AN-benefit-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    transform: scale(1.1);
}

.AN-benefit-icon svg {
    width: 40px;
    height: 40px;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.AN-benefit-item:hover .AN-benefit-icon svg {
    color: white;
}

.AN-benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.AN-benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.AN-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.AN-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/cta-pattern.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.AN-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.AN-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.AN-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.AN-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .AN-hero-service {
        padding: 4rem 0 3rem;
    }
    
    .AN-hero-service .AN-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .AN-hero-service .AN-hero-text {
        text-align: center;
        order: 2;
    }
    
    .AN-hero-service .AN-hero-image {
        order: 1;
    }
    
    .AN-service-hero-img {
        max-width: 300px;
    }
    
    .AN-service-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .AN-hero-service .AN-hero-title {
        font-size: 2.5rem;
    }
    
    .AN-hero-service .AN-hero-description {
        font-size: 1.125rem;
    }
    
    .AN-service-details {
        padding: 4rem 0;
    }
    
    .AN-service-intro h2 {
        font-size: 2rem;
    }
    
    .AN-service-offerings h2,
    .AN-service-benefits h2 {
        font-size: 1.875rem;
    }
    
    .AN-offerings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .AN-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .AN-offering-card {
        padding: 1.5rem;
    }
    
    .AN-cta-content h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .AN-hero-service .AN-hero-title {
        font-size: 2rem;
    }
    
    .AN-service-intro h2 {
        font-size: 1.75rem;
    }
    
    .AN-offering-card {
        padding: 1.25rem;
    }
    
    .AN-benefit-item {
        padding: 1.5rem 0.5rem;
    }
}

/* Basis partnerships afbeelding styling */
.AN-partnerships-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AN-partnerships-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Afbeelding met partner logos overlay */
.AN-partnerships-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.AN-partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px;
    align-items: center;
    justify-items: center;
    z-index: 2;
}

.AN-partner-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    width: 100%;
}

.AN-partner-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
}

.AN-partner-logo img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.AN-partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Afbeelding met gradient overlay en badge */
.AN-partnerships-image-style {
    position: relative;
    overflow: hidden;
}

.AN-partnerships-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.AN-partnerships-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.8) 0%,
        rgba(147, 51, 234, 0.8) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.AN-partnerships-image-style:hover .AN-partnerships-overlay {
    opacity: 1;
}

.AN-partnerships-image-style:hover .AN-partnerships-main-img {
    transform: scale(1.05);
}

.AN-partnerships-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.AN-partnerships-badge span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 8px;
}

.AN-partnerships-badge small {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive aanpassingen voor afbeeldingen */
@media (max-width: 768px) {
    .AN-partners-overlay {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .AN-partner-logo {
        min-height: 50px;
        padding: 12px;
    }
    
    .AN-partner-logo img {
        max-height: 30px;
    }
    
    .AN-partnerships-badge {
        padding: 20px 25px;
    }
    
    .AN-partnerships-badge span {
        font-size: 2.5rem;
    }
}

/* Animatie voor fade-in effect */
.AN-partnerships-visual {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Extra styling voor smooth transitions tussen tech grid en afbeelding */
.AN-partnerships-visual.switching {
    animation: fadeOut 0.3s ease-out forwards;
}

.AN-partnerships-visual.switching.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Insights Page Styles */
.AN-hero-insights {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.AN-hero-insights .AN-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.AN-hero-insights .AN-hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.AN-insights-page {
    padding: 4rem 0;
    background: #f8fafc;
}

.AN-insights-filters {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.AN-insights-filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.AN-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.AN-filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.AN-filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.AN-insights-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.AN-insight-card-full {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.AN-insight-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.AN-insight-image-full {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.AN-insight-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.AN-insight-card-full:hover .AN-insight-image-full img {
    transform: scale(1.05);
}

.AN-insight-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.AN-insight-content-full {
    padding: 1.5rem;
}

.AN-insight-meta-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.AN-insight-date-full {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.AN-insight-featured-badge {
    background: #fbbf24;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.AN-insight-title-full {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.AN-insight-description-full {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.AN-insight-footer-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.AN-insight-link-full {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.AN-insight-link-full:hover {
    color: #1e40af;
}

.AN-insight-link-full::after {
    content: '→';
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.AN-insight-link-full:hover::after {
    transform: translateX(4px);
}

.AN-insight-share {
    display: flex;
    gap: 0.5rem;
}

.AN-share-btn {
    background: #f3f4f6;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.AN-share-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

.AN-insights-pagination {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.AN-insights-count {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.AN-no-insights {
    text-align: center;
    padding: 4rem 0;
}

.AN-no-insights-icon {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.AN-no-insights h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.AN-no-insights p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

.AN-newsletter-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
}

.AN-newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.AN-newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.AN-newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.AN-newsletter-signup {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
}

.AN-newsletter-signup input {
    flex: 1;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.AN-newsletter-signup button {
    border-radius: 50px;
    white-space: nowrap;
    padding: 0.75rem 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .AN-hero-insights .AN-hero-title {
        font-size: 2.5rem;
    }
    
    .AN-hero-insights .AN-hero-description {
        font-size: 1.125rem;
    }
    
    .AN-insights-full-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .AN-insight-card-full {
        margin: 0 1rem;
    }
    
    .AN-insights-filter-group {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .AN-filter-btn {
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .AN-newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .AN-newsletter-text h2 {
        font-size: 2rem;
    }
    
    .AN-newsletter-signup {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .AN-newsletter-signup input,
    .AN-newsletter-signup button {
        border-radius: 8px;
    }
}