/* --- Global Styles & Variables --- */

:root {
    --font-heading: 'JetBrains Mono', monospace;
    --font-body: 'JetBrains Mono', monospace;
    --bg-light: #f8faff;
    --text-light: #080F36;
    --primary: #4370FF;
    --secondary: #94eFFF;
    --bg-dark: #0F0435;
    --text-dark: #B0C3FF;
    --primary-dark: #404AFF;
    --secondary-dark: #B0C3FF;
    --bg-accent: #404AFF;
    --text-accent: #FFFFFF;
    --transition-speed: 0.8s;
}

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

.special-font {
    font-family: 'Inter', sans-serif;
}

/* Hide scrollbar */
::-webkit-scrollbar { display: none; }
html { -ms-overflow-style: none; scrollbar-width: none; }

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    scroll-behavior: smooth;
}

/* Theme transitions */
body[data-section-theme="light"] {
    background-color: var(--bg-light);
    color: var(--text-light);
}
body[data-section-theme="dark"] {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}
body[data-section-theme="accent"] {
    background-color: var(--bg-accent);
    color: var(--text-accent);
}

/* Animated background grid */
.bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; opacity: 0.03;
    background-image:
        linear-gradient(rgba(67, 112, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 112, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000; padding: 2rem 0;
    transition: all 0.4s ease;
}
body[data-section-theme="light"] nav {
    background: rgba(248, 250, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(8, 15, 54, 0.1);
}
body[data-section-theme="dark"] nav,
body[data-section-theme="accent"] nav {
    background: rgba(15, 4, 53, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(176, 195, 255, 0.1);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none; transition: all 0.3s ease;
}
.nav-logo-img {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #4370FF, #94eFFF);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.2rem;
}
.nav-logo-img img { /* Added rule for images */
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}
.nav-logo-text {
    font-size: 1.2rem; font-weight: 700; letter-spacing: -0.5px;
    transition: color 0.4s ease;
}
body[data-section-theme="light"] .nav-logo-text { color: #080F36; }
body[data-section-theme="dark"] .nav-logo-text,
body[data-section-theme="accent"] .nav-logo-text { color: #B0C3FF; }
.nav-menu {
    display: flex; gap: 3rem;
    list-style: none; align-items: center;
}
.nav-menu a {
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    transition: all 0.3s ease; position: relative;
}
body[data-section-theme="light"] .nav-menu a { color: #6b7280; }
body[data-section-theme="dark"] .nav-menu a,
body[data-section-theme="accent"] .nav-menu a { color: #B0C3FF; }
.nav-menu a:hover { color: #4370FF; }
body[data-section-theme="accent"] .nav-menu a:hover { color: #ffffff; }
.theme-toggle {
    background: none; border: 1px solid; border-radius: 6px;
    cursor: pointer; padding: 0.5rem 1rem; font-size: 0.8rem;
    font-family: inherit; font-weight: 500; transition: all 0.3s ease;
}
body[data-section-theme="light"] .theme-toggle { color: #080F36; border-color: #080F36; }
body[data-section-theme="dark"] .theme-toggle,
body[data-section-theme="accent"] .theme-toggle { color: #B0C3FF; border-color: #B0C3FF; }
.theme-toggle:hover { background: rgba(67, 112, 255, 0.1); }
.mobile-menu-toggle {
    display: none; background: none; border: none;
    font-size: 1.5rem; cursor: pointer; color: inherit;
}

/* --- Sections --- */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
#hero .container { /* Narrow container for hero text */
    max-width: 800px;
}

/* --- Hero Section --- */
#hero.section { text-align: center; }
.hero-logo {
    width: 270px; /* Corrected Size */
    height: 270px; /* Corrected Size */
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 3rem; font-weight: 700; /* Corrected Font Size */
    box-shadow: 0 10px 40px rgba(67, 112, 255, 0.3);
}
.hero-logo img { /* Added rule for images */
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}
h1.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800; line-height: 1; letter-spacing: -0.05em;
    margin: 0 auto 1rem;
}
h2.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600; line-height: 1.2;
    color: var(--secondary-dark); /* Use correct variable */
    max-width: 1100px; margin: 0 auto 1.5rem;
}

/* About Section - After Hero */

/* --- About Section - After Hero --- */
#about .container {
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "preheading preheading"
        "intro      details"
        "button     button";
    gap: 2rem 5rem;
    align-items: center;
    min-height: calc(100vh - 12rem); /* Adjusts for section padding to fit viewport */
}

#about .preheading {
    grid-area: preheading;
    font-family: var(--font-mono);
    /* --- CHANGE HERE: Increased the font size values --- */
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-style: normal;
    text-align: center;
    opacity: 1;
    font-weight: 600;
    position: relative; 
    max-width: 80%;
    justify-self: center;
}



.about-intro {
    grid-area: intro;
    text-align: left;
}

#about h2 {
    text-align: left;
    margin-bottom: 2rem;
}

#about .section-subtitle {
    text-align: left;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    opacity: 0.8;
    font-weight: 500;
}

.about-details {
    grid-area: details;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}
.about-content-section .section-subtitle {
    font-weight: normal;
}

#about p {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    opacity: 0.85;
    max-width: 100%;
    margin: 0;
}

#about .cta-button {
    grid-area: button;
    justify-self: center;
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 112, 255, 0.3);
}

#about .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 112, 255, 0.4);
}


/* Mobile Optimization */
@media (max-width: 768px) {
    #about .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "preheading"
            "intro"
            "details"
            "button";
        gap: 2rem;
        min-height: 0;
        text-align: center;
    }

    #about h2,
    #about .section-subtitle,
    .about-details {
        text-align: center;
    }

    .preheading {
        font-size: 0.95rem;
    }

    #about p {
        font-size: 1.05rem;
    }

    #about .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
        margin-top: 1rem;
    }
}
/* --- Typography for Other Sections --- */
.section-header { text-align: center; margin-bottom: 4rem; }
h2 { /* Default h2 for other sections */
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    opacity: 0.8; max-width: 700px; margin: 0 auto;
}

/* --- Story Cards --- */
.carousel-container { overflow: hidden; margin-top: 4rem; position: relative; }
.carousel-track {
    display: flex; gap: 2rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px; overflow: hidden;
    transition: all 0.4s ease; cursor: pointer;
    flex: 0 0 380px; text-decoration: none;
    color: inherit; display: block;
}
body[data-section-theme="light"] .story-card {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
body[data-section-theme="dark"] .story-card,
body[data-section-theme="accent"] .story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(67, 112, 255, 0.2);
}
.card-image {
    width: 100%; height: 240px; object-fit: cover;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.card-content { padding: 2rem; font-family: var(--font-heading); text-align: left; }
.card-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary);
    background: rgba(67, 112, 255, 0.1); padding: 0.4rem 0.8rem;
    border-radius: 4px; margin-bottom: 1rem;
}
body[data-section-theme="dark"] .card-tag,
body[data-section-theme="accent"] .card-tag {
    color: var(--secondary);
    background: rgba(176, 195, 255, 0.15);
}
.card-title {
    font-size: 1.4rem; font-weight: 700;
    margin-bottom: 0.8rem; line-height: 1.3;
}
.card-description {
    font-size: 1rem; line-height: 1.6; opacity: 0.8;
    font-family: var(--font-body);
}
.card-stat {
    font-size: 2rem; font-weight: 800; color: var(--primary);
    margin-bottom: 0.5rem;
}
body[data-section-theme="dark"] .card-stat,
body[data-section-theme="accent"] .card-stat { color: var(--secondary); }

/* --- Video Section --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem; margin: 3rem auto; max-width: 100%;
}
.video-item {
    width: 100%; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.video-item video {
    width: 100%; height: auto; object-fit: cover; display: block;
}
.embed-grid { margin-top: 0; }
.embed-responsive {
    position: relative; overflow: hidden; width: 100%;
    padding-top: 56.25%; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.embed-responsive iframe {
    position: absolute; top: 0; left: 0; bottom: 0; right: 0;
    width: 100%; height: 100%; border: none;
}

/* --- Solution Section --- */
.solution-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.7; margin-bottom: 2rem; opacity: 0.9;
}
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; margin-top: 4rem; text-align: left;
}
.feature-item { padding: 1.5rem; }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-item h4 {
    font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}
.feature-item p { font-size: 0.95rem; opacity: 0.8; line-height: 1.5; }


/* --- Reusable FAQ Button --- */

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem; /* Adds some space above the button */
}

.faq-link-button {
    display: inline-flex;
   
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 112, 255, 0.2);
}

.faq-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 112, 255, 0.3);
    color: white;
}

/* --- CTA Section --- */
.hero-content { text-align: center; max-width: 900px; margin: 0 auto; }
.hero-content p.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    opacity: 0.8; margin-bottom: 3rem; line-height: 1.5;
}
.cta-button {
    display: inline-block; background: var(--primary); color: white;
    padding: 1.2rem 3rem; border-radius: 8px; font-size: 1rem;
    font-weight: 600; text-decoration: none; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 112, 255, 0.3);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 112, 255, 0.4);
}
body[data-section-theme="dark"] .cta-button,
body[data-section-theme="accent"] .cta-button {
    background: white; color: var(--bg-dark);
}

/* --- Footer --- */
footer { padding: 4rem 2rem 2rem; border-top: 1px solid rgba(176, 195, 255, 0.1); }
body[data-section-theme="light"] footer { border-top: 1px solid rgba(8, 15, 54, 0.1); }
.footer-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; margin-bottom: 2rem;
}
.footer-brand p { opacity: 0.7; margin-top: 1rem; line-height: 1.6; }
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem;
    opacity: 0.6; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-links a {
    display: block; color: inherit; text-decoration: none;
    opacity: 0.7; margin-bottom: 0.6rem; transition: opacity 0.3s ease;
}
.footer-links a:hover { opacity: 1; }
.social-links { display: flex; gap: 1rem; }
.social-link {
    width: 36px; height: 36px; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.social-link:hover { opacity: 1; background: rgba(67, 112, 255, 0.1); }
.footer-bottom {
    text-align: center; padding-top: 2rem;
    border-top: 1px solid rgba(176, 195, 255, 0.1);
    opacity: 0.6; font-size: 0.85rem;
}
body[data-section-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(8, 15, 54, 0.1);
}


.protocol-description {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.2rem, 3vw, 1.6rem); /* Responsive font size */
  line-height: 1.7;
  color: #B0C3FF; /* A soft, off-white for readability on dark backgrounds */
  max-width: 800px;
  text-align: center;
  margin: 2rem auto;
  text-shadow: 0 0 10px rgba(70, 110, 255, 0.1);
}

.protocol-description strong {
  font-weight: 600;
  color: #94EFFF; /* A solid, bright color for the protocol name */
}

/* --- Animations --- */
.animate-on-load {
    opacity: 0; transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}



/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-menu {
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0;

        /* --- FIX STARTS HERE --- */
        /* Use a specific translucent background to enable the blur */
        background-color: rgba(15, 4, 53, 0.85);

        /* Apply a blur effect to whatever is behind the menu */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
        /* --- FIX ENDS HERE --- */
        
        flex-direction: column;
        padding: 2rem; 
        gap: 1.5rem;
        border-bottom: 1px solid rgba(67, 112, 255, 0.1);
    }
    .nav-menu.active { 
        display: flex; 
    }
    .mobile-menu-toggle { 
        display: block; 
    }
    .section { 
        padding: 6rem 1.5rem 3rem; 
    }
    .hero-logo { 
        width: 120px; 
        height: 120px; 
        font-size: 3rem; 
    }
    h1.hero-title { 
        font-size: clamp(2.5rem, 12vw, 4rem); 
    }
    h2, h2.hero-subtitle { 
        font-size: clamp(2rem, 10vw, 3.5rem); 
    }
    .footer-container { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    .feature-list { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    .story-card { 
        flex: 0 0 320px; 
    }
    .video-grid { 
        grid-template-columns: 1fr; 
    }
}

.tagline {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #e4e4e7;
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
}

.arms-race-tagline {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #0F0435;
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
}

.tech {
  color: #0F0435;
  font-weight: 500;
}

.arms-race-tech {
    color: #404AFF;
    font-weight: 500;
}



.memory {
  position: relative;
  font-weight: 500;
  color: transparent;
  letter-spacing: 1px;
  cursor: pointer;
}
.memory {
  display: inline-block;        /* ensures consistent box metrics */
  vertical-align: baseline;     /* try baseline, middle, or text-bottom if needed */
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;         /* use the surrounding line-height */
  white-space: nowrap;          /* optional to avoid wrapping mid-animation */
  cursor: pointer;
}

/* --- FAQ Section --- */
#faq .container {
    max-width: 900px;
}

.faq-container {
    margin-top: 4rem;
    border-top: 1px solid rgba(8, 15, 54, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(8, 15, 54, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    opacity: 0.8;
}

/* Active state - controlled by JavaScript */
.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust if answers are very long */
    padding-bottom: 2rem;
}

/* Ask a Question CTA */
.faq-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
}

.faq-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.faq-answer ul {
    list-style-position: inside;
    padding-left: 0.5rem;
    margin: 1rem 0;
    opacity: 0.8;
}

.faq-answer li {
    margin-bottom: 0.75rem;
}

/* --- About Page Styles --- */

/* --- NEW About Page Styles --- */

.about-content-section {
    max-width: 900px;
    text-align: center;
}

/* --- About Page Header Restyle --- */
#about-header .section-subtitle {
    /* Makes the main mission statement pop */
    color: var(--secondary-dark);
    font-weight: normal;
}

.mission-details {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    max-width: 700px; /* Constrains line length for readability */
    margin: 1.5rem auto 0; /* Adds space between the two text blocks */
    color: var(--text-dark);
    opacity: 0.8;
}
.about-content-section h3.special-font {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1.5rem;
}

.about-content-section p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    opacity: 0.9;
}

.github-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--text-light);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.github-link:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.1);
}

.github-link svg {
    width: 32px;
    height: 32px;
}

#values .section-header h2 {
    color: white; /* Ensure heading is visible on accent bg */
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.value-tag {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
}
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.two-column-grid .column h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.two-column-grid .column p,
.two-column-grid .column li {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

#impact ul {
    list-style-position: inside;
    padding-left: 0.5rem;
    margin: 1.5rem 0;
}

#impact li {
    margin-bottom: 0.75rem;
}

.example-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    background-color: rgba(67, 112, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

.example-quote p {
    font-style: italic;
    opacity: 1;
    font-size: 1rem !important;
}

/* Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto; /* Makes table scrollable on small screens */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.attack-vector-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

.attack-vector-table th,
.attack-vector-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.attack-vector-table th {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-dark);
}

.attack-vector-table tbody tr:last-child td {
    border-bottom: none;
}

.attack-vector-table td:nth-child(3) {
    
    color: #404AFF;
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
