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

:root {
    --fsu-garnet: #782F40;
    --fsu-maroon: #5A2432;
    --fsu-gold: #CEB888;
    --legacy-blue: #425563;
    --westcott-water: #5CB8B2;
    --vault-gold: #FFC72C;
    --vault-garnet: #A6192E;
    --navy: #1B2B4A;
    --forest-green: #4A7C59;
    --light-beige: #F5F1E8;
    --cream: #FFF9EC;
    --dark-text: #2C2C2C;
    --white: #ffffff;
    --border-color: #E0D5C7;
    --link-color: #782F40;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
}

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

/* Header Styles */
.top-bar {
    background-color: var(--fsu-maroon);
    color: var(--white);
    padding: 0.5rem 0;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.top-bar-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Alert Banner */
.alert-banner {
    background-color: var(--vault-gold);
    border-bottom: 3px solid #e6b000;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--fsu-garnet);
    margin-top: 2px;
}

.alert-text {
    flex: 1;
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.alert-text strong {
    color: var(--fsu-garnet);
    font-weight: 700;
}

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

/* FSU Logo */
.header-logo {
    height: 80px;
    width: auto;
}

.fsu-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fsu-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fsu-garnet);
    letter-spacing: -1px;
}

.college-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--fsu-garnet);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Navigation */
nav {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--fsu-garnet);
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--fsu-garnet);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--fsu-garnet);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    padding: 0.75rem 1.25rem;
    display: block;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: var(--light-beige);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(120, 47, 64, 0.85), rgba(90, 36, 50, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23782F40" width="1200" height="400"/><path opacity="0.1" fill="%23000" d="M0,200 Q300,150 600,200 T1200,200 L1200,400 L0,400 Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(120, 47, 64, 0.3) 0%, rgba(27, 43, 74, 0.3) 100%);
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Matters Section - Redesigned */
.matters-section {
    background-color: var(--light-beige);
    padding: 4rem 0;
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.matters-redesign {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.matters-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--fsu-garnet);
    background: linear-gradient(135deg, rgba(120, 47, 64, 0.1), rgba(120, 47, 64, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.stat-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fsu-garnet);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.stat-source {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.75rem;
    font-style: italic;
    line-height: 1.4;
}

.matters-description {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.matters-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.impact-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.impact-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--westcott-water), #4da89f);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(92, 184, 178, 0.3);
}

.impact-box svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke-width: 3;
}

matters-graphic {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9; /* Maintains video proportions */
}

.graphic-left {
    flex: 1;
    position: relative;
}

.graphic-left iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.graphic-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
}

.graphic-right {
    flex: 1;
    background: linear-gradient(135deg, var(--navy) 0%, #152038 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.icon-circle svg {
    width: 40px;
    height: 40px;
}

.matters-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

/* Site Info Section */
/* Model Section */
.model-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.model-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 100%;
    margin: 0 0 3rem 0;
    text-align: left;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.model-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--fsu-garnet);
}

.model-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.model-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.model-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.model-link {
    color: var(--fsu-garnet);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.model-link:hover {
    opacity: 0.7;
}

/* Content Section */
.content {
    padding: 3rem 0;
    background-color: var(--light-beige);
}

/* Callout Box */
.callout {
    background-color: var(--white);
    border-left: 4px solid var(--fsu-garnet);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.callout h3 {
    font-family: 'Libre Baskerville', serif;
    color: var(--fsu-garnet);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.callout ul {
    margin: 1rem 0 0 2rem;
}

.callout li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Additional Resources */
.additional-resources {
    margin-bottom: 3rem;
}

.additional-resources h3 {
    font-family: 'Libre Baskerville', serif;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.resource-grid-five {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.resource-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.resource-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.resource-card h4 {
    font-family: 'Libre Baskerville', serif;
    color: var(--fsu-garnet);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--fsu-garnet);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--fsu-maroon);
    transform: translateY(-2px);
}

/* Download Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--fsu-garnet), var(--fsu-maroon));
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(120, 47, 64, 0.3);
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(120, 47, 64, 0.4);
}

.btn-download svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Resource List Styling */
.resource-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-item {
    background: white;
    border-left: 4px solid var(--legacy-blue);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.resource-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.resource-item h4 {
    font-family: 'Libre Baskerville', serif;
    color: var(--fsu-garnet);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.resource-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    color: var(--legacy-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.resource-link:hover {
    color: var(--fsu-garnet);
}

/* Getting Started Section */
.getting-started {
    background-color: var(--white);
    border: 2px solid var(--fsu-garnet);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.getting-started h3 {
    font-family: 'Libre Baskerville', serif;
    color: var(--fsu-garnet);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.getting-started ol {
    margin: 1rem 0 0 2rem;
}

.getting-started li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.getting-started a {
    color: var(--fsu-garnet);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #101820;
    color: var(--white);
    padding: 3rem 0 2rem;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.fsu-logo-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fsu-logo-footer .fsu-text {
    color: var(--white);
}

.fsu-logo-footer .college-text {
    color: var(--white);
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-address p {
    margin-bottom: 0.5rem;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 0.75rem;
}

footer a {
    color: var(--fsu-gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Links */
a {
    color: var(--link-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .matters-content {
        grid-template-columns: 1fr;
    }

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

    .site-info-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }

    nav {
        order: 4;
        width: 100%;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: var(--light-beige);
        margin-top: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .alert-banner {
        padding: 0.75rem 0;
    }

    .alert-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .alert-icon {
        width: 20px;
        height: 20px;
    }

    .alert-text {
        font-size: 0.875rem;
    }

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

    .model-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .resource-grid-five {
        grid-template-columns: 1fr;
    }

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

    .impact-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .matters-description {
        padding: 1.5rem;
    }

    .model-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .matters-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero {
        padding: 2rem 0;
    }

    .header-logo {
        height: 35px;
    }

    .fsu-text {
        font-size: 2rem;
    }

    .college-text {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .callout,
    .getting-started {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .menu-toggle,
    .btn {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ===== GUIDE PAGE SPECIFIC STYLES ===== */

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    background-color: var(--light-beige);
    font-size: 0.875rem;
}

.breadcrumbs-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs-list li:not(:last-child)::after {
    content: '›';
    color: var(--fsu-garnet);
    font-weight: 600;
}

.breadcrumbs a {
    color: var(--fsu-garnet);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumbs a:hover {
    opacity: 0.7;
}

.breadcrumbs-list li:last-child {
    color: #666;
}

/* Guide Layout with Sidebar */
.guide-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

/* Sidebar Navigation */
.guide-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fsu-garnet);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--fsu-gold);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: var(--light-beige);
    border-left-color: var(--fsu-garnet);
    color: var(--fsu-garnet);
}

.sidebar-nav a.active {
    font-weight: 600;
}

/* Guide Main Content */
.guide-main {
    max-width: 900px;
}

/* Accessibility Checker Button */
.checker-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--legacy-blue) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(66, 85, 99, 0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.checker-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 85, 99, 0.4);
}

.checker-button::before {
    content: '✓';
    width: 32px;
    height: 32px;
    background-color: var(--westcott-water);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Updated Tip Box with Legacy Blue */
.tip-box {
    background-color: #E8EEF1;
    border-left: 4px solid var(--legacy-blue);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.tip-box strong {
    color: var(--legacy-blue);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* Updated Warning Box with Vault Gold */
.warning-box {
    background-color: #FFF8E1;
    border-left: 4px solid var(--vault-gold);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.warning-box strong {
    color: #B8860B;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* Updated Checklist with Westcott Water */
.checklist {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.checklist ul {
    list-style: none;
    margin-left: 0;
}

.checklist li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: var(--westcott-water);
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Numbered Steps */
.step-list ol {
    counter-reset: step-counter;
    list-style: none;
    margin-left: 0;
}

.step-list ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.5rem;
}

.step-list ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fsu-garnet) 0%, var(--fsu-maroon) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(120, 47, 64, 0.3);
}

/* Previous/Next Navigation */
.guide-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    gap: 2rem;
}

.guide-nav-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--fsu-garnet);
    border-radius: 8px;
    text-decoration: none;
    color: var(--fsu-garnet);
    font-weight: 600;
    transition: all 0.3s;
    flex: 1;
    max-width: 300px;
}

.guide-nav-btn:hover {
    background-color: var(--fsu-garnet);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 47, 64, 0.3);
}

.guide-nav-btn.prev {
    text-align: left;
}

.guide-nav-btn.next {
    text-align: right;
    margin-left: auto;
}

.guide-nav-btn .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.guide-nav-btn .title {
    font-size: 1rem;
    margin-top: 0.25rem;
}

.guide-nav-btn .arrow {
    font-size: 1.5rem;
}

/* Hero Variations for Each Guide */
.hero.word-hero {
    background: linear-gradient(rgba(66, 85, 99, 0.85), rgba(27, 43, 74, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23425563" width="1200" height="400"/><circle opacity="0.1" fill="%23fff" cx="200" cy="100" r="150"/><circle opacity="0.1" fill="%23fff" cx="900" cy="300" r="180"/></svg>');
}

.hero.pptx-hero {
    background: linear-gradient(rgba(166, 25, 46, 0.85), rgba(120, 47, 64, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23A6192E" width="1200" height="400"/><rect opacity="0.1" fill="%23fff" x="100" y="150" width="300" height="200" rx="8"/><rect opacity="0.1" fill="%23fff" x="800" y="100" width="300" height="200" rx="8"/></svg>');
}

.hero.outlook-hero {
    background: linear-gradient(rgba(92, 184, 178, 0.85), rgba(66, 85, 99, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%235CB8B2" width="1200" height="400"/><path opacity="0.1" fill="%23fff" d="M600 100 L800 200 L600 300 L400 200 Z"/></svg>');
}

.hero.pdf-hero {
    background: linear-gradient(rgba(255, 199, 44, 0.75), rgba(206, 184, 136, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23FFC72C" width="1200" height="400"/><rect opacity="0.15" fill="%23000" x="300" y="50" width="600" height="300" rx="4"/></svg>');
}

.hero.resources-hero {
    background: linear-gradient(rgba(66, 85, 99, 0.85), rgba(27, 43, 74, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23425563" width="1200" height="400"/><circle opacity="0.1" fill="%23fff" cx="300" cy="200" r="120"/><circle opacity="0.1" fill="%23fff" cx="900" cy="200" r="140"/><circle opacity="0.1" fill="%23fff" cx="600" cy="100" r="100"/></svg>');
}

/* Responsive Guide Layout */
@media (max-width: 1024px) {
    .guide-layout {
        grid-template-columns: 1fr;
    }

    .guide-sidebar {
        position: static;
        background-color: var(--light-beige);
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .guide-nav {
        flex-direction: column;
    }

    .guide-nav-btn {
        max-width: 100%;
    }

    .guide-nav-btn.next {
        margin-left: 0;
    }

    .checker-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   ENHANCED FOUR PRINCIPLES (POUR) STYLING
   ======================================== */

.intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pour-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.principle-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--fsu-garnet);
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--fsu-garnet), var(--vault-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.principle-card:hover::before {
    opacity: 1;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(120, 47, 64, 0.15);
}

.principle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.principle-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fsu-garnet), #a23e52);
    color: #fff;
    flex-shrink: 0;
}

.principle-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.principle-letter {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--vault-gold);
    color: var(--fsu-garnet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    box-shadow: 0 2px 8px rgba(255, 199, 44, 0.3);
}

/* Individual card color accents */
.principle-perceivable .principle-icon {
    background: linear-gradient(135deg, #782F40, #a23e52);
}

.principle-operable .principle-icon {
    background: linear-gradient(135deg, #425563, #5a7080);
}

.principle-understandable .principle-icon {
    background: linear-gradient(135deg, #5CB8B2, #7bccc7);
}

.principle-robust .principle-icon {
    background: linear-gradient(135deg, #FFC72C, #ffd45c);
}

.principle-card h4 {
    color: var(--fsu-garnet);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.principle-card > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.principle-examples {
    background: #f8f9fa;
    border-left: 3px solid var(--westcott-water);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.principle-examples strong {
    color: var(--fsu-garnet);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.principle-examples ul {
    margin: 0;
    padding-left: 1.25rem;
}

.principle-examples li {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.principle-examples li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pour-principles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .principle-card {
        padding: 1.5rem;
    }
    
    .principle-icon {
        width: 50px;
        height: 50px;
    }
    
    .principle-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .principle-letter {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .pour-principles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .pour-principles {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   KEY ACCESSIBILITY CONCEPTS STYLING
   ======================================== */

.concept-grid {
    display: grid;
    gap: 2.5rem;
    margin: 2rem 0 3rem;
}

.concept-item {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--fsu-garnet);
}

.concept-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.concept-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.concept-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--fsu-garnet), #a23e52);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    box-shadow: 0 4px 12px rgba(120, 47, 64, 0.2);
}

.concept-header h4 {
    margin: 0;
    color: var(--fsu-garnet);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    flex: 1;
}

.concept-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.concept-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.detail-box {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid;
    transition: all 0.2s ease;
}

.detail-box:hover {
    transform: translateX(4px);
}

/* Detail Box Color Variants */
.detail-box.tip {
    background: #f8f9fa;
    border-color: var(--westcott-water);
}

.detail-box.info {
    background: #f0f4f8;
    border-color: var(--legacy-blue);
}

.detail-box.warning {
    background: #fff9f0;
    border-color: var(--vault-gold);
}

.detail-box.success {
    background: #f0faf9;
    border-color: var(--westcott-water);
}

.detail-box.error {
    background: #fff5f5;
    border-color: #e53e3e;
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-box.tip .detail-icon {
    background: var(--westcott-water);
    color: #fff;
}

.detail-box.info .detail-icon {
    background: var(--legacy-blue);
    color: #fff;
}

.detail-box.warning .detail-icon {
    background: var(--vault-gold);
    color: var(--fsu-garnet);
}

.detail-box.success .detail-icon {
    background: var(--westcott-water);
    color: #fff;
}

.detail-box.error .detail-icon {
    background: #e53e3e;
    color: #fff;
}

.detail-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.detail-content {
    flex: 1;
}

.detail-content strong {
    display: block;
    color: var(--fsu-garnet);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.detail-content li {
    color: #555;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.detail-content li strong {
    display: inline;
    text-transform: none;
    letter-spacing: normal;
    color: var(--fsu-garnet);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .concept-item {
        padding: 1.5rem;
    }
    
    .concept-header {
        gap: 1rem;
    }
    
    .concept-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .concept-header h4 {
        font-size: 1.2rem;
    }
    
    .detail-box {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .detail-icon {
        width: 36px;
        height: 36px;
    }
    
    .detail-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 1024px) {
    .concept-grid {
        gap: 3rem;
    }
}

/* ========================================
   IMPROVED H3 HEADINGS SITE-WIDE
   ======================================== */

.content h3,
.guide-section h3,
section h3 {
    color: var(--fsu-garnet);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--vault-gold);
    position: relative;
}

.content h3::after,
.guide-section h3::after,
section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--fsu-garnet);
}

/* First h3 in a section shouldn't have excessive top margin */
.guide-section > h3:first-child,
.content > h3:first-child {
    margin-top: 0;
}

/* ========================================
   CITATION BOX STYLING
   ======================================== */

.citation-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid var(--legacy-blue);
    border-radius: 8px;
    margin: 1.5rem 0 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.citation-box svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--legacy-blue);
    margin-top: 2px;
}

.citation-box p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.citation-box strong {
    color: var(--fsu-garnet);
    font-weight: 600;
}

.citation-box a {
    color: var(--legacy-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.citation-box a:hover {
    color: var(--fsu-garnet);
    border-bottom-color: var(--fsu-garnet);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content h3,
    .guide-section h3,
    section h3 {
        font-size: 1.6rem;
        margin-top: 2.5rem;
    }
    
    .citation-box {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }
    
    .citation-box svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================

/* ========================================
   INDEX PAGE HERO WITH CUSTOM BACKGROUND
   ======================================== */

.hero-with-custom-bg {
    background-image: url('images/hero-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================
   MATTERS TEXT + VIDEO LAYOUT
   ======================================== */

.matters-text-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.matters-text {
    /* Text styling already exists, this just ensures proper grid behavior */
}

.matters-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.matters-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .matters-text-video {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .matters-video {
        order: 2; /* Video goes below text on mobile */
    }
}
