@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --color-blue: #003399;
    --color-blue-dark: #002266;
    --color-green: #004444;
    --color-green-dark: #003333;
    --color-red: #da5c56;
    --color-red-light: #f27772;
    --color-eu-yellow: #FFCC00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins-Regular', sans-serif;

}

a {
    text-decoration: none !important;
}

body {
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: white;
}

.integrage-nerda .sticky-top {
    z-index: 998;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    line-height: 1.7;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Header Styles */
.top-bar {
    background-color: var(--color-blue);
    color: white;
    height: 50px;
}

.top-bar .btn-top {
    background: transparent;
    color: white !important;
    border: 1px solid white !important;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    height: 28px;
    line-height: 1;
}

.top-bar .btn-top:hover {
    background: white !important;
    color: var(--color-blue) !important;
}

.navbar-custom {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: white;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: var(--color-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.125rem;
    color: var(--color-red);
    font-weight: 600;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #6b7280;
}

.nav-link-custom {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link-custom:hover {
    color: var(--color-blue);
    background: #f9fafb;
}

/* Hero Section */
.hero-section {
    min-height: 87vh;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.6) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid white;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 256px;
}

.floating-card-gradient {
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
    color: white;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--color-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 51, 153, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--color-blue-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background-color: white;
    color: #1a1a1a;
    border: 2px solid #e5e7eb;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: #f9fafb;
    color: #1a1a1a;
}

/* Three Levels Section */
.level-wrapper {
    position: relative;
    height: 100%;
}

.book-layer-1 {
    position: absolute;
    top: 4px;
    right: -4px;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    z-index: -2;
}

.book-layer-2 {
    position: absolute;
    top: 2px;
    right: -2px;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    z-index: -1;
}

.level-card {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    background: white;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.level-card:hover {
    transform: translateY(-4px);
}

.level-card-header {
    height: 224px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.level-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.level-icon-box {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 1rem;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.level-card-spine-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    z-index: 1;
}

.level-card-spine-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
}

.level-card-body {
    padding: 1.75rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.check-icon-box {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.three-level-section .btn-level {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    border: none !important;
    border-radius: 12px !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-level-blue {
    background: var(--color-blue) !important;
}

.btn-level-blue:hover {
    background: var(--color-blue-dark) !important;
}

.btn-level-green {
    background: var(--color-green) !important;
}

.btn-level-green:hover {
    background: var(--color-green-dark) !important;
}

.btn-level-red {
    background: var(--color-red) !important;
}

.btn-level-red:hover {
    background: var(--color-red-light) !important;
}

/* About Section */
.about-card {
    background: white;
    border-left: 4px solid var(--color-blue);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.about-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-left-width: 8px;
    color: inherit;
    text-decoration: none;
}

.about-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-blue);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.about-card:hover .read-more-link {
    border-bottom-color: var(--color-blue);
}

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

.about-card:hover .read-more-arrow {
    transform: translateX(4px);
}

/* News & Events Cards */
.news-card {
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    background: white;
}

.news-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 192px;
    object-fit: cover;
    width: 100%;
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-blue);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.event-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-badge {
    background-color: var(--color-green);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.875rem;
    display: inline-block;
    width: fit-content;
}

/* Footer */
footer {
    background-color: var(--color-green);
    color: white;
}

.footer-logo {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    font-weight: 700;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.eu-badge {
    width: 48px;
    height: 48px;
    background-color: var(--color-eu-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 1.5rem;
}

/* Utilities */
.section-divider {
    width: 80px;
    height: 4px;
    margin: 0 auto 1.5rem;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

@media (min-width:421px) and (max-width: 768px) {
    .navbar-image {
        height: 35px;
    }
}

@media screen and (max-width: 420px) {
    .navbar-image {
        height: 26px;
    }
}


.breadcrumb-section {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb a {
    color: var(--color-blue);
    text-decoration: none;
}

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

.breadcrumb-separator {
    color: #9ca3af;
}

.breadcrumb-current {
    color: #6b7280;
}

.article-hero {
    position: relative;
    background: #111827;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #111827 0%, rgba(17, 24, 39, 0.8) 50%, rgba(17, 24, 39, 0.4) 100%);
}

.article-hero-content {
    position: relative;
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .article-hero-content {
        padding: 3rem 0;
    }
}

.article-badge {
    display: inline-block;
    background-color: var(--color-blue);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.article-hero h1 {
    color: white;
    margin-bottom: 2rem;
}

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

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.article-meta-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.article-meta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 48rem;
}

/* Article Content Layout */
.article-section {
    padding: 4rem 0;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .article-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Article Body */
.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.article-body strong {
    font-weight: 600;
    color: #1a1a1a;
}

.article-image {
    width: 100%;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.05), rgba(0, 68, 68, 0.05));
    border-left: 4px solid var(--color-blue);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.highlight-box p {
    color: #1a1a1a;
    margin-bottom: 0;
}

.quote-box {
    background: #f9fafb;
    border-left: 4px solid var(--color-green);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.quote-box p {
    font-style: italic;
    margin-bottom: 0;
}

.quote-author {
    margin-top: 1rem;
    color: #6b7280;
    font-style: normal;
    font-size: 1rem;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--color-blue);
    color: white;
}

/* Related Articles */
.related-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-article {
    display: block;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.related-article:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-blue);
}

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

.related-article-content {
    padding: 1.25rem;
}

.related-article h5 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.related-article:hover h5 {
    color: var(--color-blue);
}

.related-article-date {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 6rem;
}

.sidebar-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* Article Info */
.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 51, 153, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--color-blue);
    font-size: 1.5rem;
}

.info-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: #1a1a1a;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-btn {
    width: 2.75rem;
    height: 2.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
}

.share-btn:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: white;
}

.share-btn i {
    font-size: 1.25rem;
}

/* Latest News */
.news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5rem;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #f9fafb;
}

.news-item img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.news-item-content h5 {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-item:hover h5 {
    color: var(--color-blue);
}

.news-item-date {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

:root {
    --color-blue: #003399;
    --color-blue-light: #0066CC;
    --color-blue-100: #dbeafe;
    --color-blue-50: rgba(219, 234, 254, 0.5);
    --color-green: #004444;
    --color-red: #DA5C57;
}

/* Section */
.news-section {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .news-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.header-overlay-default {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    inset: 0;
}

/* Header */
.news-header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge {
    display: inline-block;
    background-color: var(--color-blue-100);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--color-blue);
    font-weight: 500;
}

.news-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .news-description {
        font-size: 1.5rem;
    }
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* News Card */
.news-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.news-card-image-wrapper {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.05);
}

.news-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-blue);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.news-card-date i {
    width: 1rem;
    height: 1rem;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card-excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-blue);
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    margin-left: -1rem;
    padding-left: 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 0.375rem;
}

.news-card-link:hover {
    background: #eff6ff;
}

.news-card-link i {
    width: 1rem;
    height: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(to right, var(--color-blue), var(--color-blue-light));
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 2rem 1.5rem;
    }
}

.newsletter-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.newsletter-icon i {
    font-size: 5rem;
}

.newsletter-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.newsletter-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--color-blue);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.newsletter-button:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.newsletter-button i {
    font-size: 1.25rem;
}


.evc-wrap {
    max-width: 1160px;
}

.evc-head {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.evc-head-in {
    padding: 1.25rem 1.25rem;
}

@media (min-width: 992px) {
    .evc-head-in {
        padding: 1.6rem 1.75rem;
    }
}

.evc-title {
    margin: 0;
    font-weight: 900;
    letter-spacing: -.04em;
    color: rgba(0, 0, 0, .88);
    line-height: 1.1;
}

.evc-intro {
    margin-top: .55rem;
    color: rgba(0, 0, 0, .62);
    font-weight: 600;
    line-height: 1.65;
    max-width: 78ch;
}

.evc-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
}

@media (max-width: 991.98px) {
    .evc-metrics {
        margin-top: .85rem;
    }
}


.evc-metric {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(250, 250, 250, .9);
    padding: .75rem .85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.evc-metric .badge-frame {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}


.evc-tabs-wrap {
    display: flex;
    justify-content: center;
}

.evc-tabs {
    display: flex;
    gap: .5rem;
    padding: .35rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
    max-width: 100%;
}

.evc-tabs .nav-link {
    border-radius: 999px !important;
    font-weight: 900;
    padding: .7rem 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    color: rgba(0, 0, 0, .72);
    min-width: 220px;
    white-space: nowrap;
}


@media (max-width: 576px) {
    .evc-metrics {
        grid-template-columns: 1fr;
    }

    .evc-tabs-wrap {
        justify-content: stretch;
    }

    .evc-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .45rem;
        padding: .35rem;
    }

    .evc-tabs .nav-item {
        width: 100%;
    }

    .evc-tabs .nav-link {
        width: 100%;
        min-width: 0;
        padding: .62rem .7rem;
        font-size: .92rem;
        gap: .45rem;
    }

    .evc-tabs .badge {
        padding: .28rem .5rem;
        font-size: .78rem;
    }
}

@media (max-width: 470px) {
    .evc-tabs {
        gap: .35rem;
        padding: .3rem;
    }

    .evc-tabs .nav-link {
        padding: .56rem .6rem;
        font-size: .88rem;
    }

    .evc-tabs .nav-link i {
        display: none;
    }
}

.evc-tabs .nav-link.active {
    background: rgba(0, 51, 153, 1);
    color: #fff;
    box-shadow: 0 16px 44px rgba(13, 110, 253, .22);
}

.evc-tabs .badge {
    border-radius: 999px;
    padding: .35rem .6rem;
    font-weight: 900;
}

.evc-tabs .nav-link.active .badge {
    background: rgba(255, 255, 255, .18) !important;
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff !important;
}

.evc-card {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .07);
    height: 100%;
    overflow: hidden;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    position: relative;
}

.evc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 110, 253, .20);
    box-shadow: 0 22px 78px rgba(0, 0, 0, .10);
}

.evc-card-in {
    padding: 1.05rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-width: 0;
}

.evc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.evc-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .42rem .76rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .84rem;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(250, 250, 250, .92);
    color: rgba(0, 0, 0, .78);
    white-space: nowrap;
}

.evc-badge.type {
    border-color: rgba(13, 110, 253, .18);
    background: rgba(13, 110, 253, .06);
    color: rgba(13, 110, 253, .95);
}

.evc-badge.active {
    border-color: rgba(32, 201, 151, .22);
    background: rgba(32, 201, 151, .08);
    color: rgba(0, 0, 0, .78);
}

.evc-badge.inactive {
    border-color: rgba(173, 181, 189, .28);
    background: rgba(173, 181, 189, .12);
    color: rgba(0, 0, 0, .65);
}

.evc-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #20c997;
    box-shadow: 0 0 0 4px rgba(32, 201, 151, .14);
}

.evc-dot.past {
    background: #adb5bd;
    box-shadow: 0 0 0 4px rgba(173, 181, 189, .14);
}

.evc-name {
    margin: 0;
    font-weight: 900;
    letter-spacing: -.03em;
    color: rgba(0, 0, 0, .90);
    line-height: 1.18;
    font-size: 1.15rem;
    overflow-wrap: anywhere;
}

.evc-meta {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    color: rgba(0, 0, 0, .66);
    font-weight: 800;
    font-size: .96rem;
}

.evc-row {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    line-height: 1.35;
    min-width: 0;
}

.evc-row i {
    margin-top: .10rem;
    flex: 0 0 auto;
}

.evc-row span {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

.evc-btn-wrap {
    margin-top: .35rem;
    display: flex;
    justify-content: center;
}

.btn-evc {
    border-radius: 12px;
    font-weight: 900;
    padding: .72rem 1.25rem;
    white-space: nowrap;
    min-width: 170px;
}

.evc-grid {
    row-gap: 1rem;
}

.event-details {
    max-width: 1160px;
}

.event-details .crumb a {
    text-decoration: none;
}

.event-details .crumb .sep {
    opacity: .5;
    margin: 0 .35rem;
}

.event-details .detail-hero {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    position: relative;
    box-shadow: 0 34px 110px rgba(0, 0, 0, .14);
    background: #f2f2f2;
    isolation: isolate;
}

.event-details .detail-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: saturate(1.06) contrast(1.03);
}

.event-details .detail-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 320px at 12% 15%, rgba(13, 110, 253, .18), transparent 60%), radial-gradient(900px 320px at 88% 15%, rgba(32, 201, 151, .12), transparent 60%), linear-gradient(180deg, rgba(0, 0, 0, .22), rgb(0 0 0 / 80%) 45%, rgba(0, 0, 0, .99));
    pointer-events: none;
    z-index: 1;
}

.event-details .glass-pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .48rem .98rem;
    border-radius: 999px;

    background: rgba(0, 0, 0, .52);
    border: 1px solid rgba(255, 255, 255, .22);

    backdrop-filter: blur(30px) saturate(220%);
    -webkit-backdrop-filter: blur(30px) saturate(220%);

    color: rgba(255, 255, 255, .99);
    font-weight: 900;
    font-size: .92rem;
    letter-spacing: .01em;

    text-shadow: 0 2px 14px rgba(0, 0, 0, .60);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .20);
    white-space: nowrap;
}

.event-details .glass-pill--light {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .78);
    color: rgba(0, 0, 0, .88);
    text-shadow: none;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
}

.event-details .dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #20c997;
    box-shadow: 0 0 0 5px rgba(32, 201, 151, .20);
}

.event-details .dot.past {
    background: #adb5bd;
    box-shadow: 0 0 0 5px rgba(173, 181, 189, .20);
}

.event-details .detail-head {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
}

.event-details .detail-head-inner {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.event-details .detail-title {
    margin: .65rem 0 0 0;
    letter-spacing: -.06em;
    line-height: 1.07;
    font-weight: 900;
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

.event-details .panel {
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .09);
    overflow: hidden;
}

.event-details .panel-body {
    padding: 1.15rem 1.15rem;
}

@media(min-width: 992px) {
    .event-details .panel-body {
        padding: 1.35rem 1.45rem;
    }
}

.event-details .status-note {
    border-radius: 18px;
    border: 1px solid rgba(173, 181, 189, .35);
    background:
        radial-gradient(700px 140px at 20% 0%, rgba(255, 255, 255, .55), transparent 60%),
        rgba(173, 181, 189, .12);
    padding: .95rem 1.05rem;
    color: rgba(0, 0, 0, .70);
    line-height: 1.55;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.event-details .info {
    border-radius: 18px;
    border: 1px solid rgba(13, 110, 253, .12);
    background:
        radial-gradient(600px 140px at 18% 0%, rgba(13, 110, 253, .10), transparent 60%),
        rgba(13, 110, 253, .045);
    padding: 1rem 1.05rem;
}

.event-details .sticky {
    position: sticky;
    top: 18px;
}

.event-details .btn-prem {
    border-radius: 16px;
    font-weight: 900;
    padding: .85rem 1.05rem;
}

.event-details .btn-prem-outline {
    border-radius: 16px;
    font-weight: 900;
    padding: .85rem 1.05rem;
}

.pb-doc-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease, background-color .2s ease;
}

.pb-doc-card:hover {
    border-color: rgba(0, 51, 153, .45);
    background: #fbfcff;
    box-shadow: 0 12px 26px rgba(17, 24, 39, .08);
    transform: translateY(-1px);
}

.pb-doc-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-doc-left::before {
    content: "";
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 51, 153, .10);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E");
    transition: background-color .2s ease, transform .2s ease;
}

.pb-doc-card:hover .pb-doc-left::before {
    background-color: rgba(0, 51, 153, .16);
    transform: scale(1.03);
}

.pb-doc-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.45;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    transition: color .2s ease;
}

.pb-doc-card:hover .pb-doc-title {
    color: #003399;
}

.pb-doc-title p {
    margin-bottom: 0px !important;
}

.pb-doc-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pb-doc-btn a,
.pb-doc-btn button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: .55rem;

    padding: .55rem .85rem !important;
    border-radius: 12px !important;

    border: 1px solid rgba(0, 51, 153, .18) !important;
    background: rgba(0, 51, 153, .06) !important;
    color: #003399 !important;

    text-decoration: none !important;
    font-weight: 600;
    font-size: .92rem;
    line-height: 1;

    transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
    white-space: nowrap;
}

.pb-doc-btn a:hover,
.pb-doc-btn button:hover {
    background: rgba(0, 51, 153, .10) !important;
    border-color: rgba(0, 51, 153, .30) !important;
    transform: translateY(-1px);
}

.pb-doc-btn .icon-download {
    font-size: 1.05rem;
    line-height: 1;
}

@media (max-width: 575.98px) {

    .pb-doc-left {
        justify-content: flex-start;
    }

    .pb-doc-left::before {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .pb-doc-title {
        -webkit-line-clamp: 3;
    }
}

.floating-documents-btn {
    position: fixed;
    right: 2rem;
    z-index: 1000;
}

.floating-documents-btn--policy {
    bottom: 2rem;
}

.floating-documents-btn--company {
    bottom: 5.75rem;
}

.floating-documents-btn--employee {
    bottom: 5.75rem;
}


.btn-documents {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;

    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.btn-documents:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.btn-documents:active {
    transform: translateY(0);
}

.btn-documents svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-documents.policy-level {
    background-color: #003399;
}

.btn-documents.policy-level:hover {
    background-color: #002266;
}

.btn-documents.company-level {
    background-color: #004444;
}

.btn-documents.company-level:hover {
    background-color: #003333;
}

.btn-documents.employee-level {
    background-color: #DA5C57;
}

.btn-documents.employee-level:hover {
    background-color: #c54d49;
}

@media (max-width: 768px) {
    .floating-documents-btn {
        right: 1.5rem;
    }

    .floating-documents-btn--policy {
        bottom: 1.5rem;
    }

    .floating-documents-btn--company {
        bottom: 5rem;
    }

    .floating-documents-btn--employee {
        bottom: 8.5rem;
    }

    .btn-documents {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .btn-documents svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

@media (max-width: 480px) {
    .floating-documents-btn {
        right: 1rem;
    }

    .floating-documents-btn--policy {
        bottom: 1rem;
    }

    .floating-documents-btn--company {
        bottom: 4.25rem;
    }

    .floating-documents-btn--employee {
        bottom: 7.5rem;
    }

    .btn-documents {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .btn-documents svg {
        width: 1rem;
        height: 1rem;
    }
}