@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary-color: #e52528;
    --primary-hover: #c41e21;
    --secondary-color: #221e1f;
    --text-color: #221e1f;
    --body-bg: #f6f6f6;
    --surface-bg: #ffffff;
    --border-color: rgba(34, 30, 31, 0.12);
    --footer-bg: #221e1f;

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Spacing & Grid */
    --container-max-width: 1440px;
    --section-padding: 96px 0;
    --gutter: 32px;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
    overflow-x: hidden;
}

/* Removed .site-wrapper to allow backgrounds to extend full-width */

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

/* Layout Helpers */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-40 {
    gap: 40px;
}

.flex-1 {
    flex: 1;
}

.flex-3 {
    flex: 3;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.py-64 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.py-96 {
    padding-top: 96px;
    padding-bottom: 96px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.m-0 {
    margin: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.w-full {
    width: 100%;
}

.bg-white {
    background-color: #fff;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-links {
    margin-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 15px;
}

.social-links a {
    color: #fff;
    margin: 0 8px;
    font-size: 14px;
}

.social-links a:hover {
    color: var(--primary-color);
}

.lang-selector a {
    margin: 0 5px;
}

.lang-selector a.active {
    color: #fff;
    font-weight: 700;
}

.search-trigger {
    margin-left: 20px;
    cursor: pointer;
    color: #fff;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.main-header .logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    position: relative;
    margin: 0 12px;
}

.main-nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-color);
    padding: 10px 0;
    display: block;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    display: block !important;
    flex-direction: column !important;
}

.main-nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    float: none !important;
}

.dropdown li a {
    padding: 10px 20px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    display: block !important;
    width: 100% !important;
}

.dropdown li a:hover {
    background-color: #f9f9f9;
}

/* Hero Section */
.hero-section {
    padding-top: 24px;
    width: 100%;
}

.slider-container {
    height: 500px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

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

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 32px;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.slider-nav button {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.slider-nav button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.slide-content h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.slide-content p {
    margin-bottom: 24px;
    color: #666;
}

/* Cards & Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.card-img {
    position: relative;
    height: 220px;
}

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

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.card-body {
    padding: 24px;
}

.card-date {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Event List */
.event-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #eee;
    transition: var(--transition);
}

.event-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.event-date {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.event-date .month {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.event-info p {
    font-size: 13px;
    color: #888;
}

/* Sidebar */
.sidebar-block {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.block-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--body-bg);
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.president-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.president-msg p {
    font-size: 14px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.info-links li {
    margin-bottom: 12px;
}

.info-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f9f9f9;
    border-radius: 6px;
    font-weight: 600;
}

.info-links li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.popular-list li {
    gap: 24px !important;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

/* Partner Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.partner-logo {
    background: #f1f1f1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-weight: 800;
    border-radius: 4px;
    font-size: 11px;
}

/* Corporate Links */
.corporate-links {
    border-top: 1px solid var(--border-color);
}

.corp-box {
    text-align: center;
    padding: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
    border-radius: 8px;
}

.corp-box:hover {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.corp-box h4 {
    font-size: 18px;
    color: var(--secondary-color);
}

.corp-box p {
    font-size: 14px;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: #fff;
}

.footer-about p {
    color: #aaa;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-links li a {
    color: #aaa;
    font-size: 14px;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    background-color: #1a1718;
    color: #666;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hamburger & Mobile Nav */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 992px) {
    .stack-md {
        flex-direction: column;
    }

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

    .hero-section {
        padding: 0;
    }

    .slider-container {
        height: 400px;
        border-radius: 0;
    }

    .slide-content {
        left: 20px;
        bottom: 20px;
        padding: 20px;
        max-width: calc(100% - 40px);
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slider-nav button {
        width: 35px;
        height: 35px;
    }

    .slider-nav {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        z-index: 999;
        transition: var(--transition);
        overflow-y: auto;
        padding: 20px;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stack-sm {
        flex-direction: column;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    background-color: var(--body-bg);
}

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

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 14px;
}

.form-group .required {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background-color: #fff;
}

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

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

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-social {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-social h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--body-bg);
    color: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.map-section {
    width: 100%;
    background: #fff;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 16px;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }
}

/* Content Pages Styles */
.content-section {
    background-color: var(--body-bg);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-body {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.content-block {
    margin-bottom: 50px;
}

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

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.content-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    color: var(--secondary-color);
}

.content-block h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--secondary-color);
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.content-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.content-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--body-bg);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: var(--body-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.mission-vision-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.mission-vision-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mission-card .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vision-card .card-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2526 100%);
    color: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.card-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    border: none;
    padding: 0;
}

.card-body {
    padding: 30px;
}

.card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background: var(--body-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Board Members */
.board-members {
    margin-top: 50px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
}

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

.member-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.member-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.member-card.president {
    border: 3px solid var(--primary-color);
}

.member-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--body-bg);
}

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

.member-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-contact a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--body-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-contact a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Audit Committee */
.audit-committee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.audit-member {
    background: var(--body-bg);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.audit-member h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.audit-member p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Content Pages */
@media (max-width: 992px) {
    .content-body {
        padding: 30px 20px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .audit-committee {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-block h2 {
        font-size: 24px;
    }

    .content-block h3 {
        font-size: 20px;
    }

    .content-block h4 {
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }
}

/* Reports, Legislation, Regulations, Standards Pages */
.reports-list,
.legislation-list,
.regulations-list,
.standards-list {
    margin-top: 40px;
}

.report-category,
.legislation-category,
.regulation-category,
.standard-category {
    margin-bottom: 50px;
}

.report-category h3,
.legislation-category h3,
.regulation-category h3,
.standard-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-category h3 i,
.legislation-category h3 i,
.regulation-category h3 i,
.standard-category h3 i {
    color: var(--primary-color);
}

.report-items,
.legislation-items,
.regulation-items,
.standard-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-item,
.legislation-item,
.regulation-item,
.standard-item {
    background: var(--body-bg);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.report-item:hover,
.legislation-item:hover,
.regulation-item:hover,
.standard-item:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.report-icon,
.legislation-icon,
.regulation-icon,
.standard-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.report-content,
.legislation-content,
.regulation-content,
.standard-content {
    flex: 1;
}

.report-content h4,
.legislation-content h4,
.regulation-content h4,
.standard-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.report-content p,
.legislation-content p,
.regulation-content p,
.standard-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.report-date,
.legislation-date,
.regulation-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.standard-code {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* Responsive for Info Bank Pages */
@media (max-width: 768px) {
    .report-item,
    .legislation-item,
    .regulation-item,
    .standard-item {
        flex-direction: column;
        text-align: center;
    }

    .report-icon,
    .legislation-icon,
    .regulation-icon,
    .standard-icon {
        margin: 0 auto;
    }

    .report-category h3,
    .legislation-category h3,
    .regulation-category h3,
    .standard-category h3 {
        font-size: 20px;
    }
}

/* Members List Page Styles */
.members-page-section {
    background-color: var(--body-bg);
}

.members-filters {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.filters-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-dropdown-wrapper {
    min-width: 280px;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.filter-label i {
    color: var(--primary-color);
    margin-right: 6px;
}

.filter-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    background-color: #fff;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e52528' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.filter-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 37, 40, 0.1);
}

.filter-dropdown:hover {
    border-color: var(--primary-color);
}

.search-wrapper {
    flex: 1;
    min-width: 300px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    color: var(--secondary-color);
    background-color: #fff;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 37, 40, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-clear {
    position: absolute;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--body-bg);
    color: #666;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
}

.search-clear:hover {
    background: var(--primary-color);
    color: #fff;
}

.clear-filters-btn {
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    height: fit-content;
}

.clear-filters-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.clear-filters-btn i {
    font-size: 12px;
}

.members-intro {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.members-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.members-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.member-company-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.member-company-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-left-color: var(--primary-color);
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.company-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--body-bg);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-info {
    margin-top: 15px;
}

.company-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.company-info-item i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.company-info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.company-info-item a:hover {
    text-decoration: underline;
}

.no-members {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.no-members i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-members h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.no-members p {
    color: #666;
    font-size: 16px;
}

/* Responsive Members Page */
@media (max-width: 992px) {
    .members-grid-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .members-intro {
        padding: 30px 20px;
    }

    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-dropdown-wrapper,
    .search-wrapper {
        min-width: 100%;
        width: 100%;
    }

    .clear-filters-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .members-filters {
        padding: 20px;
    }

    .members-grid-list {
        grid-template-columns: 1fr;
    }

    .member-company-card {
        padding: 20px;
    }

    .filters-wrapper {
        gap: 15px;
    }
}

/* Press News Styles */
.press-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.press-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.press-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.press-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.press-source {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.press-content {
    padding: 24px;
}

.press-date {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.press-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.press-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.press-statements {
    margin-top: 30px;
}

.statement-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.statement-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.statement-date {
    background: var(--body-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.statement-date .day {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.statement-date .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.statement-date .year {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.statement-content {
    flex-grow: 1;
}

.statement-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.statement-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Gallery Styles */
.gallery-filters {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-filters .filter-btn {
    padding: 10px 24px;
    background: var(--body-bg);
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.gallery-link:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.gallery-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.gallery-date {
    font-size: 13px;
    color: #888;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.video-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(229, 37, 40, 0.4);
}

.video-item:hover .video-play-btn {
    background: var(--primary-hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.video-caption {
    padding: 15px;
}

.video-caption h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.video-date {
    font-size: 12px;
    color: #888;
}

/* Responsive Gallery & Press */
@media (max-width: 992px) {
    .press-news-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .statement-item {
        flex-direction: column;
    }

    .statement-date {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .statement-date .day,
    .statement-date .month,
    .statement-date .year {
        display: inline-block;
    }
}