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

:root {
    --primary-color: #25a9e2;
    --secondary-color: #1d87b8;
    --accent-color: #f5a816;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-menu > li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown > a::after {
    display: none;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-hover);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.submenu a::after {
    display: none;
}

.submenu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

/* Responsive video sizing for different aspect ratios */
@media (min-aspect-ratio: 16/9) {
    .hero-video video {
        height: 56.25vw; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video video {
        width: 177.78vh; /* 16:9 aspect ratio */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(37, 169, 226, 0.25) 50%, rgba(29, 135, 184, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    margin-top: 1.5rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--bg-white);
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 60px;
    background: var(--text-dark);
    opacity: 0.2;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--text-dark);
    opacity: 0.3;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}

/* Services Section */
.services {
    background: #d8fffc;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2rem;
}

.service-card:hover {
    transform: none;
    box-shadow: none;
    border-bottom-color: var(--text-dark);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Resources Section */
.resources-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.resources-section:nth-of-type(odd) {
    background: #fafafa;
}

.resources-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-left: 0;
}

.resources-header h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1.5rem;
    margin-left: 0;
    padding-left: 0;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0;
    padding-left: 0;
}

.resource-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding-left: 0;
}

.resource-item {
    padding: 0.8rem 0;
    padding-left: 0;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s ease;
    text-align: left;
}

.resource-item:hover {
    padding-left: 0;
}

.resource-item h3 {
    color: var(--text-dark);
    margin: 0;
    padding-left: 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.resource-item h3::before {
    content: '→';
    font-size: 0.9rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.resource-item:hover h3::before {
    transform: translateX(5px);
}

.resource-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.resource-link:hover {
    color: var(--text-dark);
    gap: 0.8rem;
}

/* Hide new elements in default/non-colorful styles */
.resource-icon,
.resource-meta {
    display: none;
}

/* Ensure resource-card behaves like resource-item in default styles */
.resource-card {
    padding: 0.8rem 0;
    padding-left: 0;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s ease;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
    border: none;
    height: auto;
    display: block;
}

.resource-card:hover {
    padding-left: 0;
    transform: none;
    box-shadow: none;
    border: none;
}

.resource-card h3 {
    color: var(--text-dark);
    margin: 0;
    padding-left: 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resource-card h3::before {
    content: '→';
    font-size: 0.9rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.resource-card:hover h3::before {
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    /* Mobile Dropdown Styles */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown.active .submenu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .submenu a {
        padding: 0.7rem 2rem;
    }

    .submenu a:hover {
        padding-left: 2rem;
    }

    .dropdown > a {
        cursor: pointer;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-content {
        gap: 3rem;
    }

    .about-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
        padding-top: 1rem;
    }

    .stat-item {
        padding: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item::before {
        width: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-card {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item::before {
        width: 30px;
    }

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

/* Documents Page Specific Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Page Header with Background Image */
.page-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    background: var(--bg-white);
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/cow-3542489_1920.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.header-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(37, 169, 226, 0.25) 50%, rgba(29, 135, 184, 0.35) 100%);
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
    width: 100%;
}

.page-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--bg-white);
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-nav-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--bg-white);
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.page-nav-link:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.content-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
}

/* Content Section */
.content-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-content {
    min-width: 0; /* Prevents grid overflow */
}

.sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: none;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-nav-link {
    display: block;
    padding: 8px 16px;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-nav-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.follow-us p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-dark);
    background: var(--bg-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.contact-details {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.sidebar-image {
    margin-top: 2.5rem;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.document-content {
    max-width: 100%;
    margin: 0;
    line-height: 1.8;
    color: var(--text-dark);
}

.document-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.document-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
}

.document-content h2:first-of-type {
    margin-top: 2rem;
}

.content-link {
    margin-bottom: 3rem;
    text-align: left;
}

.content-link .btn {
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
}

.content-link .btn:hover {
    background: var(--text-dark);
    opacity: 0.9;
    transform: none;
}

.benefits-list {
    list-style: disc;
    padding-left: 2rem;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.document-content sub {
    font-size: 0.8em;
    vertical-align: sub;
}

/* Documents Header */
.documents-header {
    background: var(--bg-white);
    padding: 3rem 0;
}

.documents-header .section-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.documents-header .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Category Filter */
.category-filter {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: none;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--text-dark);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-tab:hover {
    background: transparent;
    color: var(--text-dark);
    border-bottom-color: var(--text-dark);
    transform: none;
}

.filter-tab.active {
    background: transparent;
    color: var(--text-dark);
    border-bottom-color: var(--text-dark);
    box-shadow: none;
    font-weight: 600;
}

/* Documents List */
.documents-list {
    background: #d8fffc;
    padding: 3rem 0;
    min-height: 60vh;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.document-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2rem;
}

.document-card:hover {
    transform: none;
    box-shadow: none;
    border-bottom-color: var(--text-dark);
}

.document-card.hidden {
    display: none;
}

.document-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.document-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.document-card .document-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.document-card .document-content p {
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    font-size: 1rem;
}

.document-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.document-date {
    color: var(--text-light);
}

.document-type {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.75rem;
}

.document-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.document-link:hover {
    color: var(--text-dark);
    gap: 0.8rem;
}

/* Documents Page Responsive Design */
@media (max-width: 992px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 250px;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .page-nav {
        gap: 1rem;
    }

    .page-nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .resources-header h2 {
        font-size: 1.6rem;
    }

    .resources-grid {
        gap: 0;
    }

    .resource-item {
        padding: 0.7rem 0;
    }

    .documents-header .section-header h1 {
        font-size: 2rem;
    }

    .category-filter {
        top: 70px;
        padding: 1.5rem 0;
    }

    .filter-tabs {
        gap: 0.4rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .filter-tabs::-webkit-scrollbar-track {
        background: var(--bg-light);
    }

    .filter-tabs::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }

    .filter-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .document-card {
        padding: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 200px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .page-nav-link {
        font-size: 0.85rem;
    }

    .resources-header h2 {
        font-size: 1.5rem;
    }

    .header-content {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 2.5rem 0;
    }

    .document-content {
        padding: 0 1rem;
    }

    .document-content h2 {
        font-size: 1.6rem;
        margin-top: 2rem;
    }

    .content-subtitle {
        font-size: 1.4rem;
    }

    .document-content p {
        font-size: 1rem;
    }

    .content-link .btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .benefits-list li {
        padding: 0.5rem 0;
    }

    .documents-header {
        padding: 2rem 0;
    }

    .documents-header .section-header h1 {
        font-size: 1.8rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .document-card {
        padding: 1.2rem;
    }

    .document-icon {
        font-size: 2.5rem;
    }
}

/* Style Switcher */
.style-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: "DM Sans", sans-serif;
}

body.style-colorful .style-switcher {
    font-family: "Poppins", sans-serif;
}

.style-switcher-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
    pointer-events: auto !important;
}

.style-switcher-toggle:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.style-switcher-toggle svg {
    width: 24px;
    height: 24px;
}

.style-switcher-content {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 1.5rem;
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.style-switcher.active .style-switcher-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.style-switcher-content h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.style-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.style-option {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.style-option:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.style-option.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    font-weight: 600;
}

.style-option.active::after {
    content: '✓';
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.style-name {
    display: block;
}

/* Responsive Design for Style Switcher */
@media (max-width: 768px) {
    .style-switcher {
        bottom: 15px;
        left: 15px;
    }

    .style-switcher-toggle {
        width: 45px;
        height: 45px;
    }

    .style-switcher-toggle svg {
        width: 20px;
        height: 20px;
    }

    .style-switcher-content {
        bottom: 65px;
        min-width: 180px;
        padding: 1.25rem;
    }

    .style-switcher-content h3 {
        font-size: 0.9rem;
    }

    .style-option {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .style-switcher {
        bottom: 10px;
        left: 10px;
    }

    .style-switcher-toggle {
        width: 40px;
        height: 40px;
    }

    .style-switcher-content {
        bottom: 60px;
        min-width: 160px;
        padding: 1rem;
    }
}

/* Classic Style Theme (Default) */
body.style-classic {
    /* Uses the default :root variables, no overrides needed */
}

/* Colorful Style Theme */
body.style-colorful {
    --primary-color: #0f85c8;
    --secondary-color: #f6ab1d;
    --accent-color: #f6ab1d;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    font-family: "Poppins", sans-serif;
}

body.style-colorful .navbar {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    box-shadow: 0 4px 20px rgba(15, 133, 200, 0.3);
}

body.style-colorful .logo h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

body.style-colorful .nav-menu a {
    color: rgba(255, 255, 255, 0.9);
}

body.style-colorful .nav-menu a:hover {
    color: #ffffff;
}

body.style-colorful .nav-menu a::after {
    background: #ffffff;
}

body.style-colorful .submenu {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(15, 133, 200, 0.2);
}

body.style-colorful .submenu a {
    color: var(--text-dark);
}

body.style-colorful .submenu a:hover {
    background: #0f85c8;
    color: #ffffff;
}

body.style-colorful .hero {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
}

body.style-colorful .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(15, 133, 200, 0.2) 50%, rgba(246, 171, 29, 0.3) 100%);
}

body.style-colorful .btn-primary {
    background: linear-gradient(135deg, #0f85c8 0%, #1a9ae0 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 133, 200, 0.4);
}

body.style-colorful .btn-primary:hover {
    background: linear-gradient(135deg, #0d6fa5 0%, #0f85c8 100%);
    box-shadow: 0 6px 20px rgba(15, 133, 200, 0.5);
    transform: translateY(-2px);
}

body.style-colorful .btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
}

body.style-colorful .btn-secondary:hover {
    background: #ffffff;
    color: #0f85c8;
}

body.style-colorful .underline {
    background: linear-gradient(90deg, #0f85c8 0%, #f6ab1d 100%);
    height: 4px;
}

body.style-colorful .services {
    background: linear-gradient(135deg, #f6ab1d 0%, #ffc947 100%);
}

body.style-colorful .service-card:hover {
    border-bottom-color: #0f85c8;
}

body.style-colorful .service-card h3 {
    color: #2d3436;
}

body.style-colorful .resource-link:hover {
    color: #0f85c8;
}

body.style-colorful .footer {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

body.style-colorful .footer-section h3,
body.style-colorful .footer-section h4 {
    color: #f6ab1d;
}

body.style-colorful .footer-section ul li a:hover {
    color: #0f85c8;
}

body.style-colorful .page-header .header-background::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(15, 133, 200, 0.3) 50%, rgba(246, 171, 29, 0.3) 100%);
}

body.style-colorful .sidebar-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
}

body.style-colorful .sidebar-section h3 {
    border-bottom: none;
    color: #2d3436;
}

body.style-colorful .sidebar-nav-link {
    border-color: #0f85c8;
    background: #ffffff;
}

body.style-colorful .sidebar-nav-link:hover {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    border-color: #f6ab1d;
    color: #ffffff;
}

body.style-colorful .social-icon {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    color: #ffffff;
}

body.style-colorful .social-icon:hover {
    background: linear-gradient(135deg, #f6ab1d 0%, #ffc947 100%);
    transform: translateY(-3px) scale(1.1);
}

body.style-colorful .style-switcher-toggle {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    box-shadow: 0 4px 20px rgba(15, 133, 200, 0.4);
}

body.style-colorful .style-switcher-toggle:hover {
    background: linear-gradient(135deg, #f6ab1d 0%, #ffc947 100%);
    box-shadow: 0 6px 25px rgba(246, 171, 29, 0.5);
}

body.style-colorful .style-switcher-content h3 {
    border-bottom-color: #0f85c8;
}

body.style-colorful .style-option:hover {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    border-color: #0f85c8;
}

body.style-colorful .style-option.active {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    border-color: #0f85c8;
}

body.style-colorful .stat-number {
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.style-colorful .content-subtitle {
    border-bottom-color: #0f85c8;
}

body.style-colorful .document-content h2 {
    border-bottom-color: #f6ab1d;
}

body.style-colorful .resources-header h2 {
    border-bottom-color: #0f85c8;
}

body.style-colorful .resource-item:hover h3::before {
    color: #0f85c8;
    transform: translateX(8px);
}

/* Colorful Style - New Layout for Publications, Videos, and News */
body.style-colorful .resources-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

body.style-colorful .resource-icon,
body.style-colorful .resource-meta {
    display: block;
}

body.style-colorful .resources-section#publications {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7f0 50%, #b8d9e8 100%);
}

body.style-colorful .resources-section#videos {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 50%, #ffdcb3 100%);
}

body.style-colorful .resources-section#news {
    background: linear-gradient(135deg, #e6f0ff 0%, #cce0ff 50%, #b3d1ff 100%);
}

body.style-colorful .resources-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

body.style-colorful .resources-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0f85c8 0%, #f6ab1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: none;
    padding-bottom: 0;
}

body.style-colorful .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

body.style-colorful .resource-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

body.style-colorful .resource-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(15, 133, 200, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

body.style-colorful .resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0f85c8 0%, #f6ab1d 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

body.style-colorful .resource-card:hover::before {
    transform: scaleX(1);
}

body.style-colorful .resource-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(15, 133, 200, 0.3);
    border-color: #0f85c8;
}

body.style-colorful .resource-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f85c8 0%, #1a9ae0 100%);
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(15, 133, 200, 0.3);
}

body.style-colorful .resource-card:hover .resource-icon {
    background: linear-gradient(135deg, #f6ab1d 0%, #ffc947 100%);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(246, 171, 29, 0.4);
}

body.style-colorful .resource-icon svg {
    width: 32px;
    height: 32px;
}

body.style-colorful .resource-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    padding-left: 0;
    display: block;
    transition: color 0.3s ease;
}

body.style-colorful .resource-card h3::before {
    display: none;
}

body.style-colorful .resource-card:hover h3 {
    color: #0f85c8;
}

body.style-colorful .resource-meta {
    color: #636e72;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 0.5rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

body.style-colorful .resource-card:hover .resource-meta {
    opacity: 1;
    color: #0f85c8;
}

/* Specific color accents for each section */
body.style-colorful #publications .resource-icon {
    background: linear-gradient(135deg, #0f85c8 0%, #1a9ae0 100%);
}

body.style-colorful #publications .resource-card:hover {
    border-color: #0f85c8;
}

body.style-colorful #publications .resource-card:hover h3 {
    color: #0f85c8;
}

body.style-colorful #videos .resource-icon {
    background: linear-gradient(135deg, #f6ab1d 0%, #ffc947 100%);
}

body.style-colorful #videos .resource-card:hover {
    border-color: #f6ab1d;
}

body.style-colorful #videos .resource-card:hover h3 {
    color: #f6ab1d;
}

body.style-colorful #videos .resource-card:hover .resource-icon {
    background: linear-gradient(135deg, #0f85c8 0%, #1a9ae0 100%);
}

body.style-colorful #news .resource-icon {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

body.style-colorful #news .resource-card:hover {
    border-color: #6c5ce7;
}

body.style-colorful #news .resource-card:hover h3 {
    color: #6c5ce7;
}

body.style-colorful #news .resource-card:hover .resource-icon {
    background: linear-gradient(135deg, #0f85c8 0%, #1a9ae0 100%);
}

/* Responsive adjustments for colorful style */
@media (max-width: 768px) {
    body.style-colorful .resources-header h2 {
        font-size: 2rem;
    }

    body.style-colorful .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    body.style-colorful .resource-card {
        padding: 2rem 1.5rem;
    }

    body.style-colorful .resource-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    body.style-colorful .resources-section {
        padding: 3rem 0;
    }

    body.style-colorful .resources-header h2 {
        font-size: 1.75rem;
    }

    body.style-colorful .resource-card {
        padding: 1.5rem 1.25rem;
    }

    body.style-colorful .resource-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    body.style-colorful .resource-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Glassmorphism Style Theme */
body.style-glassmorphism {
    --primary-color: #1187c8;
    --secondary-color: #0d6fa5;
    --accent-color: #1a9ae0;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --bg-white: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.3);
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    background-attachment: fixed;
}

body.style-glassmorphism::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    z-index: -1;
    background-attachment: fixed;
}

body.style-glassmorphism .navbar {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.style-glassmorphism .logo h1 {
    color: #1187c8;
    text-shadow: none;
    font-weight: 700;
}

body.style-glassmorphism .nav-menu a {
    color: #1e293b;
    font-weight: 500;
}

body.style-glassmorphism .nav-menu a:hover {
    color: #1187c8;
}

body.style-glassmorphism .nav-menu a::after {
    background: #1187c8;
}

body.style-glassmorphism .submenu {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body.style-glassmorphism .submenu a {
    color: #1e293b;
}

body.style-glassmorphism .submenu a:hover {
    background: rgba(17, 135, 200, 0.1);
    color: #1187c8;
}

body.style-glassmorphism .hero {
    background: transparent;
}

body.style-glassmorphism .hero-overlay {
    background: rgba(0, 0, 0, 0.05);
}

body.style-glassmorphism .hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.style-glassmorphism .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.style-glassmorphism .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

body.style-glassmorphism .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

body.style-glassmorphism .btn-primary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

body.style-glassmorphism .btn-primary:hover {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

body.style-glassmorphism .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

body.style-glassmorphism .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

body.style-glassmorphism .underline {
    background: #1187c8;
    height: 3px;
}

body.style-glassmorphism .services {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.style-glassmorphism .service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

body.style-glassmorphism .service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body.style-glassmorphism .service-card h3 {
    color: #1e293b;
}

body.style-glassmorphism .service-card p {
    color: #475569;
}

body.style-glassmorphism .footer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(17, 135, 200, 0.2);
}

body.style-glassmorphism .footer-section h3,
body.style-glassmorphism .footer-section h4 {
    color: #1e293b;
}

body.style-glassmorphism .footer-section p,
body.style-glassmorphism .footer-section ul li a {
    color: #475569;
}

body.style-glassmorphism .footer-section ul li a:hover {
    color: #1187c8;
}

body.style-glassmorphism .sidebar-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.style-glassmorphism .sidebar-section h3 {
    color: #1e293b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.75rem;
}

body.style-glassmorphism .sidebar-nav-link {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.style-glassmorphism .sidebar-nav-link:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

body.style-glassmorphism .follow-us {
    color: #1e293b;
}

body.style-glassmorphism .follow-us p {
    color: #475569;
}

body.style-glassmorphism .social-icon {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #1e293b;
}

body.style-glassmorphism .social-icon:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px) scale(1.1);
}

body.style-glassmorphism .contact-details {
    color: #1e293b;
}

body.style-glassmorphism .contact-details p {
    color: #475569;
}

body.style-glassmorphism .contact-details strong {
    color: #1e293b;
}

body.style-glassmorphism .contact-details a {
    color: #1187c8;
}

body.style-glassmorphism .contact-details a:hover {
    color: #0d6fa5;
}

body.style-glassmorphism .style-switcher {
    font-family: "Inter", sans-serif;
}

body.style-glassmorphism .style-switcher-toggle {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.style-glassmorphism .style-switcher-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body.style-glassmorphism .style-switcher-content {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body.style-glassmorphism .style-switcher-content h3 {
    color: #1e293b;
    border-bottom-color: rgba(17, 135, 200, 0.3);
}

body.style-glassmorphism .style-option {
    background: #f8f9fa;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1e293b;
    box-shadow: none;
}

body.style-glassmorphism .style-option:hover {
    background: rgba(17, 135, 200, 0.1);
    border-color: #1187c8;
    color: #1187c8;
    box-shadow: 0 2px 8px rgba(17, 135, 200, 0.2);
}

body.style-glassmorphism .style-option.active {
    background: rgba(17, 135, 200, 0.15);
    border-color: #1187c8;
    color: #1187c8;
    box-shadow: 0 2px 8px rgba(17, 135, 200, 0.2);
}

body.style-glassmorphism .section-header h2 {
    color: #1e293b;
}

body.style-glassmorphism .section-description {
    color: #475569;
}

body.style-glassmorphism .about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.style-glassmorphism .about-text {
    color: #1e293b;
}

body.style-glassmorphism .about-text strong {
    color: #0f172a;
}

body.style-glassmorphism .stat-number {
    color: #1e293b;
}

body.style-glassmorphism .stat-label {
    color: #64748b;
}

body.style-glassmorphism .content-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.style-glassmorphism .document-content {
    color: #1e293b;
}

body.style-glassmorphism .document-content h2 {
    color: #1e293b;
    border-bottom-color: rgba(17, 135, 200, 0.3);
}

body.style-glassmorphism .content-subtitle {
    color: #1e293b;
    border-bottom-color: rgba(17, 135, 200, 0.3);
}

body.style-glassmorphism .page-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.style-glassmorphism .page-header .header-background::after {
    background: rgba(0, 0, 0, 0.2);
}

body.style-glassmorphism .page-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

/* Glassmorphism Style - New Layout for Publications, Videos, and News */
body.style-glassmorphism .resources-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

body.style-glassmorphism .resources-section#publications {
    background: linear-gradient(135deg, rgba(17, 135, 200, 0.1) 0%, rgba(17, 135, 200, 0.05) 50%, rgba(17, 135, 200, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.style-glassmorphism .resources-section#videos {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(139, 92, 246, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.style-glassmorphism .resources-section#news {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(236, 72, 153, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.style-glassmorphism .resources-section:nth-of-type(odd) {
    background: inherit;
}

body.style-glassmorphism .resources-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
}

body.style-glassmorphism .resources-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
    border-bottom: none;
    padding-bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

body.style-glassmorphism .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

body.style-glassmorphism .resource-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

body.style-glassmorphism .resource-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.style-glassmorphism .resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.style-glassmorphism .resource-card:hover::before {
    opacity: 1;
}

body.style-glassmorphism .resource-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

body.style-glassmorphism .resource-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1e293b;
    transition: all 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

body.style-glassmorphism .resource-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

body.style-glassmorphism .resource-card:hover .resource-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

body.style-glassmorphism .resource-card:hover .resource-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.style-glassmorphism .resource-icon svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

body.style-glassmorphism .resource-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    padding-left: 0;
    display: block;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

body.style-glassmorphism .resource-card h3::before {
    display: none;
}

body.style-glassmorphism .resource-card:hover h3 {
    color: #0f172a;
}

body.style-glassmorphism .resource-meta {
    color: #475569;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 0.5rem;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-top: auto;
}

body.style-glassmorphism .resource-card:hover .resource-meta {
    opacity: 1;
    color: #334155;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section-specific color accents for glassmorphism */
body.style-glassmorphism #publications .resource-icon {
    background: rgba(17, 135, 200, 0.2);
    border-color: rgba(17, 135, 200, 0.3);
}

body.style-glassmorphism #publications .resource-card:hover {
    border-color: rgba(17, 135, 200, 0.4);
    box-shadow: 0 20px 60px rgba(17, 135, 200, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.style-glassmorphism #videos .resource-icon {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

body.style-glassmorphism #videos .resource-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.style-glassmorphism #news .resource-icon {
    background: rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.3);
}

body.style-glassmorphism #news .resource-card:hover {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments for glassmorphism */
@media (max-width: 768px) {
    body.style-glassmorphism .resources-header h2 {
        font-size: 2rem;
        padding: 1.25rem 2rem;
    }

    body.style-glassmorphism .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    body.style-glassmorphism .resource-card {
        padding: 2rem 1.5rem;
    }

    body.style-glassmorphism .resource-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    body.style-glassmorphism .resources-section {
        padding: 3rem 0;
    }

    body.style-glassmorphism .resources-header h2 {
        font-size: 1.75rem;
        padding: 1rem 1.5rem;
    }

    body.style-glassmorphism .resource-card {
        padding: 1.5rem 1.25rem;
    }

    body.style-glassmorphism .resource-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    body.style-glassmorphism .resource-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Retro/Vintage Style Theme */
body.style-retro {
    --primary-color: #8b4513;
    --secondary-color: #d2691e;
    --accent-color: #cd853f;
    --text-dark: #3e2723;
    --text-light: #6d4c41;
    --bg-light: #f5e6d3;
    --bg-white: #faf5f0;
    --border-color: #d7ccc8;
    font-family: "Playfair Display", "Crimson Text", serif;
    background: #f5e6d3;
}

body.style-retro .navbar {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    border-bottom: 3px solid #654321;
}

body.style-retro .logo h1 {
    color: #f5e6d3;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

body.style-retro .nav-menu a {
    color: #f5e6d3;
    font-weight: 500;
}

body.style-retro .nav-menu a:hover {
    color: #ffd700;
}

body.style-retro .nav-menu a::after {
    background: #ffd700;
    height: 3px;
}

body.style-retro .submenu {
    background: #faf5f0;
    border: 2px solid #8b4513;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

body.style-retro .submenu a {
    color: #3e2723;
}

body.style-retro .submenu a:hover {
    background: #8b4513;
    color: #f5e6d3;
}

body.style-retro .hero {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
}

body.style-retro .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(139, 69, 19, 0.3) 50%, rgba(205, 133, 63, 0.2) 100%);
}

body.style-retro .hero-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #f5e6d3;
}

body.style-retro .hero-subtitle {
    color: #f5e6d3;
    font-style: italic;
}

body.style-retro .hero-description {
    color: rgba(245, 230, 211, 0.95);
}

body.style-retro .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f5e6d3;
    border: 2px solid #654321;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    font-weight: 600;
}

body.style-retro .btn-primary:hover {
    background: linear-gradient(135deg, #654321 0%, #8b4513 100%);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.5);
    transform: translateY(-2px);
}

body.style-retro .btn-secondary {
    background: rgba(245, 230, 211, 0.2);
    border: 2px solid #f5e6d3;
    color: #f5e6d3;
}

body.style-retro .btn-secondary:hover {
    background: #f5e6d3;
    color: #8b4513;
}

body.style-retro .underline {
    background: linear-gradient(90deg, #8b4513 0%, #d2691e 100%);
    height: 4px;
    border-radius: 2px;
}

body.style-retro .services {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
    border-top: 3px solid #8b4513;
    border-bottom: 3px solid #8b4513;
}

body.style-retro .service-card {
    border-left: 4px solid #8b4513;
    padding-left: 1.5rem;
}

body.style-retro .service-card:hover {
    border-left-color: #d2691e;
    border-bottom: none;
    transform: translateX(5px);
}

body.style-retro .service-card h3 {
    color: #3e2723;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

body.style-retro .service-card p {
    color: #6d4c41;
    font-style: italic;
}

body.style-retro .footer {
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
    border-top: 3px solid #8b4513;
}

body.style-retro .footer-section h3,
body.style-retro .footer-section h4 {
    color: #f5e6d3;
    font-family: "Playfair Display", serif;
}

body.style-retro .footer-section p,
body.style-retro .footer-section ul li a {
    color: #d7ccc8;
}

body.style-retro .footer-section ul li a:hover {
    color: #ffd700;
}

body.style-retro .sidebar-section {
    background: #faf5f0;
    border: 2px solid #8b4513;
    border-radius: 8px;
}

body.style-retro .sidebar-section h3 {
    color: #3e2723;
    font-family: "Playfair Display", serif;
    border-bottom: 2px solid #8b4513;
}

body.style-retro .sidebar-nav-link {
    background: #f5e6d3;
    border: 2px solid #8b4513;
    color: #3e2723;
    font-weight: 600;
}

body.style-retro .sidebar-nav-link:hover {
    background: #8b4513;
    border-color: #654321;
    color: #f5e6d3;
}

body.style-retro .style-switcher {
    font-family: "Playfair Display", serif;
}

body.style-retro .style-switcher-toggle {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border: 2px solid #654321;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
}

body.style-retro .style-switcher-toggle:hover {
    background: linear-gradient(135deg, #a0522d 0%, #cd853f 100%);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
}

body.style-retro .style-switcher-content {
    background: #faf5f0;
    border: 2px solid #8b4513;
}

body.style-retro .style-switcher-content h3 {
    color: #3e2723;
    font-family: "Playfair Display", serif;
    border-bottom-color: #8b4513;
}

body.style-retro .style-option {
    background: #f5e6d3;
    border: 2px solid #8b4513;
    color: #3e2723;
    font-weight: 500;
}

body.style-retro .style-option:hover {
    background: #8b4513;
    border-color: #654321;
    color: #f5e6d3;
}

body.style-retro .style-option.active {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border-color: #654321;
    color: #f5e6d3;
}

body.style-retro .section-header h2 {
    color: #3e2723;
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

body.style-retro .section-description {
    color: #6d4c41;
    font-style: italic;
}

body.style-retro .about-text {
    color: #3e2723;
}

body.style-retro .about-text strong {
    color: #8b4513;
    font-weight: 600;
}

body.style-retro .stat-number {
    color: #8b4513;
    font-family: "Playfair Display", serif;
}

body.style-retro .stat-label {
    color: #6d4c41;
    font-style: italic;
}

body.style-retro .document-content {
    color: #3e2723;
}

body.style-retro .document-content h2 {
    color: #3e2723;
    font-family: "Playfair Display", serif;
    border-bottom-color: #8b4513;
}

body.style-retro .content-subtitle {
    color: #3e2723;
    font-family: "Playfair Display", serif;
    border-bottom-color: #8b4513;
}

body.style-retro .page-header {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
}

body.style-retro .page-header .header-background::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(139, 69, 19, 0.2) 50%, rgba(205, 133, 63, 0.1) 100%);
}

body.style-retro .page-title {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body.style-retro .resources-header h2 {
    color: #3e2723;
    font-family: "Playfair Display", serif;
    border-bottom-color: #8b4513;
}

body.style-retro .resource-item h3 {
    color: #3e2723;
}

body.style-retro .resource-item:hover h3::before {
    color: #8b4513;
}

body.style-retro .resource-icon,
body.style-retro .resource-meta {
    display: none;
}

body.style-retro .resource-card {
    padding: 0.8rem 0;
    padding-left: 0;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s ease;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
    border: none;
    height: auto;
    display: block;
}

body.style-retro .resource-card:hover {
    padding-left: 0;
    transform: none;
    box-shadow: none;
    border: none;
}

body.style-retro .resource-card h3 {
    color: #3e2723;
    margin: 0;
    padding-left: 0;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: "Crimson Text", serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.style-retro .resource-card h3::before {
    content: '→';
    font-size: 0.9rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

body.style-retro .resource-card:hover h3::before {
    color: #8b4513;
    transform: translateX(5px);
}

