@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;
}

/* Typography for 55+ accessibility */
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;
}