* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --navy-blue: #0a1f44;
    --navy-blue-light: #1a3a66;
    --gold: #d4af37;
    --gold-light: #f0d56c;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-gray: #6c757d;
    --text-dark: #2c3e50;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-cursive: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 5%  10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    position: relative;
    padding-left: 15px;
    
    opacity: 1;
    animation: slideDownFade 0.8s ease-out forwards;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 3px;
    height: 40px;
    background-color: var(--gold);
}

.logo h1 {
    font-family: var(--font-cursive);
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== Navigation ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav > a,
.dropdown {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.main-nav > a:hover {
    color: var(--gold);
}

.main-nav > a:hover::after {
    width: 100%;
}

/* ===== Dropdown Menu ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: block;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.dropdown:hover .dropdown-toggle {
    color: var(--gold);
}

.dropdown:hover .dropdown-toggle::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--navy-blue);
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--navy-blue);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 30px;
}

/* ===== Hamburger Menu ===== */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ===== Mobile Menu Styles ===== */
@media (max-width: 992px) {
    .header {
        padding: 15px 20px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--navy-blue);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 100px 0 40px;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .main-nav > a,
    .dropdown {
        width: 100%;
        padding: 20px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav > a::after,
    .dropdown-toggle::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        max-height: none;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 14px 40px 14px 22px;
        position: relative;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
    }

    .dropdown-menu a::before {
        content: '';
        position: absolute;
        left: 5px;
        top: 50%;
        width: 12px;
        height: 2px;
        background-color: var(--gold);
        transform: translateY(-50%);
    }

    .dropdown-menu a:hover {
        color: var(--gold);
        background: none;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        transform-origin: center;
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        transform-origin: center;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    height: 65vh;
    background-image: url('../images/2017_winter_zins2_photo1.gif');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.9) 0%, rgba(10, 31, 68, 0.1) 100%);
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    transform: translateY(40px);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        background-position: 73% center;
        height: 55vh;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

/* ===== Introduction Section ===== */
.introduction {
    padding: 100px 0;
    background-color: var(--white);
}

.introduction h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--navy-blue);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.introduction h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.introduction > .container > p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: justify;
}

.intro-image {
    max-width: 900px;
    margin: 0 auto;
}

.intro-image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    /* border-radius: 8px; */
    border: 10px solid var(--gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .introduction {
        padding: 60px 0;
    }

    .introduction h2 {
        font-size: 36px;
    }

    .intro-image img {
        height: 300px;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-family: var(--font-cursive);
    font-size: 32px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

/* ===== Social Media Icons ===== */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== UPDATED Scroll to Top Button (Gold & Navy) ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold); 
    color: var(--navy-blue); 
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#scrollTopBtn:hover {
    background-color: var(--gold-light);;
    transform: translateY(-3px);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s;
    transform-origin: 50% 50%;
    stroke: var(--navy-blue);
}

.arrow-content {
    width: 24px;
    height: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-content svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    #scrollTopBtn {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 20px;
        opacity: 0.85;
    }
}

/* 1. Biography Section */
.bio-section {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--text-dark);
}

.bio-section h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--navy-blue);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 70px; 
}

/* The Golden Line */
.bio-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.intro-group {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 30px;
    overflow: hidden; 
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--navy-blue);
    line-height: 1.8;
    margin-bottom: 25px;
}

.bio-image-wrapper {
    float: right;
    margin: 0 0 20px 40px;
    width: 400px;
    max-width: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* border: 1px solid #eee; */
    border: 3px solid var(--gold);
}

.bio-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 10px;
    font-style: italic;
}

.bio-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.clearfix {
    clear: both;
}

/* ===== Mobile Layout: Reorder Text and Image ===== */
@media (max-width: 768px) {
    .intro-group {
        display: flex;
        flex-direction: column;
    }

    .bio-image-wrapper {
        order: 2;
        
        float: none;
        width: 100%;
        margin: 30px 0 0 0;
    }

    .lead-text {
        order: 1;
        margin-bottom: 15px;
    }
}

/* ===== Biography Section ===== */
.biography-section {
    padding: 100px 0;
    background-color: var(--white);
}

.bio-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.lead-paragraph {
    font-size: 19px !important;
    font-weight: 500;
    color: var(--navy-blue) !important;
    line-height: 1.8 !important;
    margin-bottom: 40px !important;
}

.bio-with-image {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.bio-paragraphs {
    flex: 1;
}

.bio-image {
    width: 320px;
    flex-shrink: 0;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--gold);
}

.image-caption {
    margin-top: 12px;
    font-size: 13px;
    font-style: italic;
    color: var(--text-gray);
    text-align: center;
}

.final-paragraph {
    background-color: rgba(10, 31, 68, 0.03);
    padding: 25px;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    margin-top: 40px !important;
}

@media (max-width: 768px) {
    .biography-section {
        padding: 60px 0;
    }

    .bio-with-image {
        flex-direction: column;
        gap: 25px;
    }

    .bio-image {
        width: 100%;
    }
}

/* ===== Timeline Section ===== */
.timeline-section {
    padding: 120px 0;
    background: var(--navy-blue);
    position: relative;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

/* ===== Timeline Container ===== */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* ===== Animated Center Line ===== */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--gold) 0%, 
        var(--gold) var(--timeline-progress, 0%), 
        rgba(212, 175, 55, 0.2) var(--timeline-progress, 0%), 
        rgba(212, 175, 55, 0.2) 100%
    );
    transform: translateX(-50%);
    transition: --timeline-progress 0.3s ease;
}

/* ===== Timeline Items ===== */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Left Items ===== */
.timeline-item.left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.timeline-item.left .timeline-content {
    text-align: right;
}

.timeline-item.left .timeline-content p {
    text-align: justify;
}


/* ===== Right Items ===== */
.timeline-item.right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.timeline-item.right .timeline-content {
    text-align: justify;
}

/* ===== Timeline Content ===== */
.timeline-content {
    background-color: var(--white);
    padding: 30px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
    max-width: 500px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item.left .timeline-content::before {
    right: -12px;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-item.right .timeline-content::before {
    left: -12px;
    border-width: 12px 12px 12px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-content:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
    transform: scale(1.02);
}

/* ===== Timeline Year ===== */
.timeline-year {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* ===== Timeline Dots ===== */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--gold);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3);
    background-color: var(--gold);
}

/* ===== Mobile Timeline ===== */
@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
    }

    .timeline-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-item.left,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        text-align: left;
    }

    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -12px;
        right: auto;
        border-width: 12px 12px 12px 0;
        border-color: transparent var(--white) transparent transparent;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        max-width: 100%;
        padding: 25px;
    }

    .timeline-year {
        font-size: 24px;
    }
}

/* ===== AWARDS SECTION ===== */
.awards-section {
    padding: 100px 0 60px;
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.award-card {
    background-color: var(--white);
    border: 1px solid rgba(10, 31, 68, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.award-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.award-image {
    height: 400px;
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .award-card:hover .award-image img {
    transform: scale(1.05);
} */

.award-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.award-content h3 {
    font-family: var(--font-heading);
    font-size: 22.5px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.award-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== UPDATED WIKI SECTION ===== */
.wiki-section {
    padding: 60px 0 60px;
    background-color: var(--off-white);
}

.wiki-cta-card {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    border-radius: 12px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
    border-left: 6px solid var(--gold);
}

/* Background decorative element */
.wiki-cta-card::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.wiki-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    flex: 1;
}

.wiki-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.wiki-icon svg {
    width: 32px;
    height: 32px;
}

.wiki-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.wiki-text p {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 600px;
}

.wiki-action {
    flex-shrink: 0;
    z-index: 10;
}

/* Specific Button Style for this section */
.btn-wiki {
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 18px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-wiki svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-wiki:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.btn-wiki:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 992px) {
    .wiki-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .wiki-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wiki-text p {
        margin: 0 auto;
    }
    
    .wiki-action {
        width: 100%;
        font-size: 13px;
    }
    
    .btn-wiki {
        width: 100%;
        justify-content: center;
    }
}

/* ===== RESPONSIVE DESIGN (Awards & Wiki) ===== */

/* Tablets (iPad Portrait) & Small Laptops */
@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .wiki-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .wiki-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wiki-text p {
        margin: 0 auto;
    }
    
    .wiki-action {
        width: 100%;
        margin-top: 10px;
    }
    
    .btn-wiki {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Devices (Phones) */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .award-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .wiki-section {
        padding: 40px 0 60px;
    }

    .wiki-text h3 {
        font-size: 26px;
    }
}