.news-expired-badge {
    max-width: 120px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* CSS Variables */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #dc2626;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --light-text: #6b7280;
    --border-color: #e5e7eb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: white;
    overflow-x: hidden;
}



/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.logo-text .tagline {
    font-size: 14px;
    opacity: 0.9;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle:focus {
    outline: none;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom-color: white;
}

.admin-link {
    opacity: 0.8;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Welcome Section */
.welcome-section {
    background: var(--light-color);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-logo {
    flex: 0 0 250px;
}

.welcome-logo img {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.welcome-text {
    flex: 1;
}

.welcome-text h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: left;
}

.lead {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.8;
    text-align: left;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-content h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.about-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-color);
    padding: 12px 0 12px 35px;
    position: relative;
}

.about-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.about-content h3:first-of-type {
    margin-top: 25px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.about-content .history-highlight {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 25px 0;
}

.about-content .history-highlight p {
    margin-bottom: 0;
}

/* Privacy page */
.privacy-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.privacy-content p {
    margin-bottom: 20px;
    color: #333;
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* News Section */
.news-section {
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-view-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.news-expired-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #dc3545;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.news-expired-badge {
    background: #dc3545;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-view-badge svg {
    flex-shrink: 0;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.news-content p {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s;
}

.news-card-link:hover .read-more {
    color: var(--secondary-color);
}

/* Photo Album Section */
.gallery-section {
    background: var(--light-color);
}

.photo-album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.album-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.album-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.album-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.album-photo:hover img {
    transform: scale(1.1);
}

.album-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 15px 10px 10px;
    font-size: 14px;
    font-weight: 500;
}

/* Carousel Section - Keep for backwards compatibility but hide */
.carousel-section {
    background: var(--dark-color);
    padding: 0;
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.carousel-caption h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 18px;
    opacity: 0.9;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.active {
    background: white;
}

/* Downloads Section */
.downloads-section {
    background: var(--light-color);
}

.download-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.download-item {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.download-item h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.download-item p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 15px;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    width: 100%;
}

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

.download-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    margin-left: auto;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
    flex-shrink: 0;
}

.download-link:hover .download-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

/* Post Detail Page */
.page-header {
    background: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--light-text);
}

.newsletter-signup-block {
    margin: 28px auto 0;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.newsletter-signup-block h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.newsletter-signup-intro {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 14px;
}

.newsletter-signup-form {
    margin-top: 6px;
}


.newsletter-form-row {
    display: flex;
    gap: 0;
    align-items: center;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(30, 58, 138, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.newsletter-form-row input[type="email"] {
    flex: 1;
    min-width: 0;
    height: 58px;
    border: 0;
    border-radius: 0;
    padding: 0 20px;
    font-size: 16px;
    background: transparent;
}

.newsletter-form-row:hover {
    border-color: #9ca3af;
}

.newsletter-form-row:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.12), 0 14px 32px rgba(30, 58, 138, 0.12);
    transform: translateY(-1px);
}

.newsletter-form-row input[type="email"]:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-form-row input[type="email"]::placeholder {
    color: #9ca3af;
}

.newsletter-form-row .btn {
    height: 58px;
    border-radius: 0;
    padding: 0 26px;
    white-space: nowrap;
    box-shadow: none;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.newsletter-form-row .btn:hover {
    transform: none;
}

.newsletter-feedback {
    margin-bottom: 14px;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
}

.newsletter-feedback-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.newsletter-feedback-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.newsletter-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.news-list-section {
    padding: 60px 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.news-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.news-item-image {
    flex: 0 0 300px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    flex: 1;
    padding: 30px;
}

.news-item-content h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.news-item-content .news-meta {
    margin-bottom: 20px;
}

.news-item-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-header {
    background: var(--light-color);
    padding: 40px 0 20px;
}

.post-title {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--light-text);
    font-size: 15px;
    margin-bottom: 20px;
}

.post-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 30px;
    display: block;
    background: #f0f0f0;
}

.post-content {
    max-width: 800px;
    margin: 40px auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-color);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

/* Photo Gallery */
.photo-gallery {
    margin: 40px 0;
}

.gallery-title {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--light-text);
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-left: 3px solid transparent;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255,255,255,0.1);
        border-left-color: white;
    }
    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    .welcome-content {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-logo {
        flex: none;
    }
    
    .welcome-text h1 {
        text-align: center;
    }
    
    .lead {
        text-align: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item {
        flex-direction: column;
    }

    .newsletter-signup-block {
        padding: 18px;
    }

    .newsletter-signup-block h2 {
        font-size: 20px;
    }

    .newsletter-form-row {
        border-radius: 12px;
        flex-direction: column;
        align-items: stretch;
        border: none;
        box-shadow: none;
        overflow: visible;
        gap: 10px;
        background: transparent;
    }

    .newsletter-form-row input[type="email"] {
        flex: none;
        height: 50px;
        padding: 0 16px;
        font-size: 16px;
        border: 2px solid #d1d5db;
        border-radius: 10px;
        background: #fff;
    }

    .newsletter-form-row input[type="email"]:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
    }

    .newsletter-form-row .btn {
        height: 48px;
        padding: 0 18px;
        border-radius: 10px;
        width: 100%;
    }
    
    .news-item-image {
        flex: none;
        width: 100%;
    }
    
    .photo-album-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-slides {
        height: 350px;
    }
    
    .carousel-caption h2 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 16px;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .photo-album-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie consent modal */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-overlay.show {
    display: flex;
}

.cookie-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    margin: 20px;
    animation: slideDown 0.4s ease-out;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 24px 30px;
    text-align: center;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.cookie-modal-body {
    padding: 30px;
    line-height: 1.8;
    color: #333;
}

.cookie-modal-body p {
    margin: 0 0 15px 0;
}

.cookie-modal-body p:last-child {
    margin-bottom: 0;
}

.cookie-modal-body a {
    color: #1e3a8a;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-modal-body a:hover {
    color: #2563eb;
}

.cookie-modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cookie-modal-footer .btn {
    padding: 12px 32px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-weight: 500;
    transition: all 0.3s;
}

.cookie-modal-footer .btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
}

.cookie-modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.cookie-modal-footer .btn-secondary {
    background: #e5e7eb;
    color: #374151;
}

.cookie-modal-footer .btn-secondary:hover {
    background: #d1d5db;
}

@media (max-width: 480px) {
    .cookie-modal {
        width: 95%;
        margin: 10px;
    }
    
    .cookie-modal-header {
        padding: 20px;
    }
    
    .cookie-modal-header h2 {
        font-size: 20px;
    }
    
    .cookie-modal-body {
        padding: 20px;
    }
    
    .cookie-modal-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.contact-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.1s;
}

.contact-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-modal-close:active {
    transform: scale(0.95);
}

.contact-modal-close:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.contact-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    background: #fafbfc;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-group label .required {
    color: #dc2626;
    font-weight: 700;
    margin-left: 2px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input[type="email"],
.form-group input[type="text"] {
    height: 52px;
    font-size: 16px;
}

/* Specifieke styling voor contact modal inputs */
.contact-modal .form-group input[type="email"] {
    width: 100%;
    height: 56px;
    padding: 14px 18px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-modal .form-group input[type="email"]:hover {
    border-color: #9ca3af;
}

.contact-modal .form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.contact-modal .form-group input[type="email"]::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input[type="email"]:hover,
.form-group input[type="text"]:hover {
    border-color: #9ca3af;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.form-group input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group textarea:hover {
    border-color: #9ca3af;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-help-text {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
}

.character-count {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
    text-align: right;
    font-weight: 500;
}

.form-message {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
    display: block;
}

.contact-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 30px;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
}

.btn-primary,
.btn-secondary {
    padding: 13px 28px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.25);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:focus {
    outline: 3px solid rgba(30, 58, 138, 0.3);
    outline-offset: 2px;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-secondary:focus {
    outline: 3px solid rgba(107, 114, 128, 0.3);
    outline-offset: 2px;
}

/* Contact Link Styling */
.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 3px;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
}

.contact-link:focus {
    outline: 3px solid rgba(30, 58, 138, 0.3);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .contact-modal-header {
        padding: 18px 20px;
    }
    
    .contact-modal-header h2 {
        font-size: 18px;
    }
    
    .contact-modal-body {
        padding: 20px;
    }
    
    .form-group input[type="email"],
    .form-group input[type="text"],
    .form-group textarea {
        font-size: 16px; /* Voorkomt zoom op iOS */
    }
    
    .contact-modal-actions {
        flex-direction: column-reverse;
        padding: 15px 20px;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
/* BTLS CTA Section */
.btls-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btls-cta-section .container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
}

.btls-cta-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.btls-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.btls-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.btls-cta-content .btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.btls-cta-buttons {
    display: inline-flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.btls-cta-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .btls-cta-section {
        padding: 60px 20px;
    }
    
    .btls-cta-content h2 {
        font-size: 28px;
    }
    
    .btls-cta-content p {
        font-size: 16px;
    }

    .btls-cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}