/* Color Variables - PegasusAI³ Professional Brand Colors */
:root {
    --primary-color: #1e3a8a;      /* Professional Blue */
    --secondary-color: #3b82f6;    /* Bright Blue */
    --accent-color: #f1f5f9;       /* Light Blue Gray */
    --text-primary: #1e293b;       /* Dark Slate */
    --text-secondary: #475569;     /* Medium Slate */
    --text-light: #ffffff;         /* White */
    --background-light: #ffffff;   /* White */
    --background-section: #f8fafc; /* Very Light Blue */
    --border-color: #e2e8f0;       /* Light Blue Border */
    --shadow-color: rgba(30, 58, 138, 0.1); /* Blue with opacity */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #2563eb 100%);
    --highlight-color: #0ea5e9;    /* Sky Blue for highlights */
    --success-color: #10b981;      /* Emerald Green */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #00234C;
    background-color: #ffffff;
    font-weight: 400;
}

/* Container */
.container {
    width: 80%;
    max-width: none;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #00234C 0%, #003366 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(221,156,107,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #dd9c6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    font-style: italic;
}

.trust-badge {
    font-size: 1.1rem;
    color: #dd9c6b;
    font-weight: 600;
    background: rgba(221, 156, 107, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    border: 2px solid #dd9c6b;
}

/* Navigation */
.navigation {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 35, 76, 0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
    border-bottom: 3px solid #dd9c6b;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: none;
}

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

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.nav-list li {
    margin: 0;
    flex-shrink: 0;
}

.nav-list a {
    display: block;
    padding: 10px 6px;
    text-decoration: none;
    color: #00234C;
    font-weight: 500;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-list a:hover {
    background: #dd9c6b;
    color: white;
    transform: translateY(-2px);
}

/* Large screen navigation optimization */
@media (min-width: 1400px) {
    .nav-list a {
        padding: 15px 12px;
        font-size: 0.95rem;
    }
    
    .nav-list li {
        margin: 0 3px;
    }
}

/* Desktop navigation optimization */
@media (min-width: 1025px) {
    .nav-wrapper {
        width: 80%;
        max-width: none;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .nav-list {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none !important;
        opacity: 1 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        width: 100%;
        flex-wrap: nowrap;
        scrollbar-width: thin;
        scrollbar-color: #dd9c6b #f1f5f9;
    }
    
    .nav-list::-webkit-scrollbar {
        height: 6px;
    }
    
    .nav-list::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 3px;
    }
    
    .nav-list::-webkit-scrollbar-thumb {
        background: #dd9c6b;
        border-radius: 3px;
        transition: background 0.3s ease;
    }
    
    .nav-list::-webkit-scrollbar-thumb:hover {
        background: #c8864f;
    }
    
    .nav-list li {
        flex-shrink: 0;
        margin: 0 2px;
    }
    
    .nav-list a {
        padding: 6px 8px;
        font-size: 0.7rem;
        line-height: 1.2;
        white-space: nowrap;
        display: block;
    }
}

/* Navigation will use hamburger menu at 1024px and below */

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Table of Contents */
.table-of-contents {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 2px solid #dd9c6b;
}

.table-of-contents h2 {
    color: #00234C;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.toc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 35, 76, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #dd9c6b;
}

.toc-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(221, 156, 107, 0.2);
}

.toc-item a {
    text-decoration: none;
    color: #00234C;
    font-weight: 500;
    flex: 1;
}

.page-num {
    color: #dd9c6b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
    padding: 5rem 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 35, 76, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, var(--background-section) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.content-section h2 {
    color: #00234C;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 3px solid #dd9c6b;
    padding-bottom: 15px;
}

.content-section h3 {
    color: #00234C;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section h4 {
    color: #00234C;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section h5 {
    color: #00234C;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #dd9c6b;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Stat Highlights */
.stat-highlight {
    background: linear-gradient(135deg, #dd9c6b 0%, #c8895a 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(221, 156, 107, 0.3);
}

.stat-highlight p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Quote Box */
.quote-box {
    background: #f8f9fa;
    border-left: 5px solid #dd9c6b;
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #00234C;
}

/* Footnote Links */
.footnote-link {
    color: #dd9c6b;
    text-decoration: none;
    font-weight: bold;
    background: rgba(221, 156, 107, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #dd9c6b;
    transition: all 0.3s ease;
}

.footnote-link:hover {
    background: #dd9c6b;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(221, 156, 107, 0.3);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #dd9c6b;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(221, 156, 107, 0.15);
}

.stat-note {
    background: #fff3e0;
    border: 1px solid #dd9c6b;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* Impact Showcase */
.impact-showcase h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #dd9c6b;
    font-size: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, #00234C 0%, #003366 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 35, 76, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dd9c6b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-detail {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

.additional-metrics {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #dd9c6b;
}

.chart-placeholder {
    text-align: center;
    margin: 30px 0;
}

.chart-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Awards Section */
.awards-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0 40px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #dd9c6b;
}

.award-item {
    text-align: center;
}

.award-image {
    max-height: 120px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Performance Visuals */
.performance-visuals {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.chart-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 35, 76, 0.1);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.chart-container h4 {
    color: #00234C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #dd9c6b;
    padding-bottom: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #dd9c6b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(221, 156, 107, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #dd9c6b 0%, #c8895a 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 15px;
    color: #00234C;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    border-left: 5px solid #dd9c6b;
}

.benefit-item:hover {
    border-color: #dd9c6b;
    box-shadow: 0 5px 15px rgba(221, 156, 107, 0.1);
}

/* Outcomes Grid */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.outcome-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #dd9c6b;
    transition: all 0.3s ease;
}

.outcome-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(221, 156, 107, 0.2);
}

/* Go-to-Market Strategies */
.gtm-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.strategy-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    border-top: 5px solid #dd9c6b;
}

.strategy-item:hover {
    border-color: #dd9c6b;
    box-shadow: 0 8px 20px rgba(221, 156, 107, 0.15);
}

/* Distribution Channels */
.distribution-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.channel-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    border-left: 5px solid #dd9c6b;
}

.channel-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.channel-item li {
    margin-bottom: 8px;
}

/* Competitive Analysis */
.differentiators {
    margin: 25px 0;
}

.diff-item {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #dd9c6b;
}

.why-we-win {
    background: linear-gradient(135deg, #dd9c6b 0%, #c8895a 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

/* Pedigree Content */
.awards-section {
    margin-bottom: 40px;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
    padding: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.awards-grid .award-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.awards-grid .award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #dd9c6b;
}

.award-image-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.awards-grid .award-image {
    max-height: 130px;
    max-width: 100%;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(1.05) contrast(1.05);
}

.awards-grid .award-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.award-caption {
    text-align: center;
}

.award-caption h4 {
    color: #00234C;
    font-family: 'Lexend', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.award-caption p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.special-award {
    background: linear-gradient(135deg, #00234C 0%, #003366 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.special-award h4 {
    color: #dd9c6b;
    margin-bottom: 10px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.project-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    border-left: 5px solid #dd9c6b;
}

/* Team Content */
.exits-list {
    margin-top: 25px;
}

.exit-item {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    border-left: 4px solid #dd9c6b;
}

.culture-section {
    margin-top: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #dd9c6b;
}

/* Security Content */
.security-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.financial-positioning,
.security-infrastructure {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    border-left: 5px solid #dd9c6b;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-secondary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Getting Started */
.intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: #dd9c6b;
    margin-bottom: 25px;
    text-align: center;
}

.insights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.insight-item {
    background: linear-gradient(135deg, #00234C 0%, #003366 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    border: 2px solid #dd9c6b;
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #dd9c6b 0%, #c8895a 100%);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(221, 156, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(221, 156, 107, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #00234C 0%, #003366 100%);
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

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

.footer-brand h3 {
    color: #dd9c6b;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Tablet Responsive Styles */
@media (max-width: 1200px) and (min-width: 1025px) {
    .awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 18px;
        margin: 25px 0;
    }
    
    .awards-grid .award-item {
        padding: 18px;
    }
    
    .award-image-container {
        min-height: 130px;
        margin-bottom: 18px;
    }
    
    .awards-grid .award-image {
        max-height: 110px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-list li {
        margin: 5px 0;
    }
    
    .content-section {
        padding: 25px 20px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid,
    .process-steps,
    .benefits-list,
    .outcomes-grid,
    .gtm-strategies {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .awards-section {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
        margin: 20px 0;
    }
    
    .awards-grid .award-item {
        padding: 20px;
    }
    
    .award-image-container {
        min-height: 120px;
        margin-bottom: 15px;
    }
    
    .awards-grid .award-image {
        max-height: 100px;
    }
    
    .award-caption h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .award-caption p {
        font-size: 0.9rem;
    }
    
    .performance-visuals {
        margin: 20px 0;
    }
    
    .chart-container {
        padding: 15px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .chart-container h4 {
        font-size: 1.1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .trust-badge {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navigation,
    .footer {
        display: none;
    }
    
    .content-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .header {
        background: #00234C !important;
        -webkit-print-color-adjust: exact;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 3px solid #dd9c6b;
    outline-offset: 2px;
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    /* Container adjustments for mobile */
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    /* Navigation responsive */
    .nav-wrapper {
        justify-content: space-between;
    }
    
    .nav-brand {
        display: block;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 8px 32px rgba(0, 35, 76, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        z-index: 9999;
        border-top: 3px solid #dd9c6b;
        border-bottom: 2px solid #e2e8f0;
        opacity: 0;
        padding: 0;
    }
    
    .nav-list.active {
        max-height: calc(100vh - 80px);
        opacity: 1;
        overflow-y: auto;
    }
    
    .nav-list li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        padding: 20px;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 0;
        color: #00234C;
        font-weight: 500;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
    }
    
    .nav-list a:hover {
        background: #dd9c6b;
        color: white;
    }
    
    /* Header responsive */
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .trust-badge {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    /* Content responsive */
    .content-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Button responsive */
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 20px 15px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* References Section */
.references-list {
    margin-top: 20px;
}

.references-list p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.references-list a {
    color: #dd9c6b;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #00234C;
    text-decoration: underline;
}

.references-list strong {
    color: #00234C;
    font-weight: 600;
}

/* Disclaimer Styling */
.disclaimer {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8fafc;
    border-left: 3px solid #dd9c6b;
    border-radius: 4px;
}

.disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.disclaimer em {
    font-style: italic;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .content-section {
        border: 2px solid #000;
    }
    
    .stat-highlight,
    .cta-button {
        border: 2px solid #000;
    }
}