/* CSS Reset for body and html */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Custom Font Loading */
@font-face {
    font-family: 'Nexa';
    src: url('/fonts/Nexa-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Force font application with !important */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nexa', Arial, sans-serif !important;
    font-weight: bold !important;
}

/* Apply to all text elements */
body, p, div, span {
    font-family: 'Nexa', Arial, sans-serif !important;
}

/* Specific classes */
.custom-font {
    font-family: 'Nexa', Arial, sans-serif !important;
    font-weight: bold !important;
}

.title-font {
    font-family: 'Nexa', Arial, sans-serif !important;
    font-weight: bold !important;
}

/* Homepage body styling */
body:has(.homepage) {
    background-color: #ffffff !important;
    color: #000000 !important;
    text-align: center !important;
}

/* Homepage text styling */
.homepage h1, .homepage h2, .homepage h3, .homepage h4, .homepage h5, .homepage h6, 
.homepage p, .homepage div, .homepage span {
    color: #000000 !important;
}

/* Links on white background */
.homepage a {
    color: #000033 !important;
}

.homepage a:hover {
    color: #4169e1 !important;
}

/* Logo styling */
.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-link {
    text-decoration: none;
    display: block;
}

/* Header Styling */
.site-header {
    background-color: rgba(0, 0, 51, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 80px;
}

.logo-section .header-logo {
    height: 40px;
    width: auto;
}

/* Legacy logo-section - use desktop-header specific rules */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mobile logo section override */
@media (max-width: 768px) {
    .logo-section {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
}

    .logo-section .tagline {
        color: white;
        font-size: 0.9rem;
        font-weight: 300;
        margin-top: 0.2rem;
        text-align: right;
        opacity: 0.9;
        font-family: 'Nexa', Arial, sans-serif;
        width: 100%;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    transform: translateX(-8px);
}

/* Legacy main-navigation - use desktop-header specific rules */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: white !important;
    text-decoration: none;
    font-family: 'Nexa', Arial, sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 1.5rem 0;
}

.nav-link:hover {
    color: #ffa07a !important;
}

/* Header Actions (Call to Action Buttons) - Legacy, use desktop-header specific rules */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Desktop Menu Toggle Button */
.desktop-menu-toggle {
    background: #ffa07a;
    color: white;
    border: 2px solid #ffa07a;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    font-family: 'Nexa', Arial, sans-serif;
    font-weight: bold;
    height: 65px;
    min-height: 65px;
    line-height: 1.1;
    max-width: 120px;
    white-space: normal;
    flex: 0 0 auto;
    margin-left: 1rem;
}

.desktop-menu-toggle:hover {
    background: #ff8c5a;
    border-color: #ff8c5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hide old mobile menu button completely - only the one in header */
.header-actions .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

.btn {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Nexa', Arial, sans-serif;
    font-weight: bold;
    max-width: 120px;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffa07a;
    color: white !important;
}

.btn-primary:hover {
    background-color: #ff8c5a;
    color: #000033 !important;
}

.btn-secondary {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #000033 !important;
}

/* Homepage Template - Blue Theme */
.homepage {
    min-height: calc(100vh - 200px);
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.homepage-content h1 {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    font-family: 'Nexa', Arial, sans-serif !important;
    color: #000033 !important;
}

.homepage-content h2 {
    font-size: 2rem !important;
    margin: 2rem 0 1rem 0 !important;
    color: #000033 !important;
    font-family: 'Nexa', Arial, sans-serif !important;
    text-align: center !important;
}

.homepage-content p {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    color: #333 !important;
    font-family: 'Nexa', Arial, sans-serif !important;
}

.homepage-content ul {
    text-align: left !important;
    max-width: 800px !important;
    margin: 0 auto 2rem auto !important;
    padding-left: 2rem !important;
    list-style-type: disc !important;
}

.homepage-content li {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.8rem !important;
    color: #333 !important;
    font-family: 'Nexa', Arial, sans-serif !important;
}

.homepage-content strong {
    color: #000033 !important;
    font-weight: bold !important;
}

.homepage-content a {
    color: #000033 !important;
}

.homepage-content a:hover {
    color: #4169e1 !important;
}

/* Footer Styling */
.site-footer {
    background-color: rgba(0, 0, 51, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Why Edgible Section */
.why-edgible {
    margin-bottom: 4rem;
}

.why-edgible h2 {
    text-align: center;
    color: white;
    font-family: 'Nexa', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: white;
    font-family: 'Nexa', Arial, sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Blogs Section */
.blogs-section {
    margin-bottom: 4rem;
}

.blogs-section h2 {
    text-align: center;
    color: white;
    font-family: 'Nexa', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post h3 {
    margin-bottom: 1rem;
}

.blog-post h3 a {
    color: white !important;
    text-decoration: none;
    font-family: 'Nexa', Arial, sans-serif;
    font-size: 1.3rem;
}

.blog-post h3 a:hover {
    color: #ffa07a !important;
}

.blog-post p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-date {
    color: #ffa07a;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-info .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link {
    color: #ffa07a !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff8c5a !important;
}

/* Remove old logo positioning */
.logo-container {
    display: none;
}

/* Standard Page Template - Clean and Simple */
.standard-page {
    background-color: white;
    color: black;
    min-height: 100vh;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.standard-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    color: black;
}

.standard-content h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    text-align: center;
    color: black;
    font-family: 'Nexa', Arial, sans-serif;
}

/* Blog page specific - larger title */
body:has([url="/blog"]) .standard-content h1,
.main-content:has([url="/blog"]) .standard-page h1 {
    font-size: 2.8rem !important;
}

/* Blog Landing Page Styles */
.blog-landing-page {
    background-color: white;
    color: black;
    min-height: 100vh;
    padding: 2rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: white;
    color: black;
}

.blog-content h1 {
    font-size: 2.8rem;
    margin: 0 0 1rem 0;
    text-align: center;
    color: black;
    font-family: 'Nexa', Arial, sans-serif;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #4169e1;
    text-align: left;
    font-family: 'Nexa', Arial, sans-serif;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem 0;
    color: black;
    text-align: left;
}

.blog-content h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    color: #4169e1;
    text-align: left;
}

/* Blog post snippets - grey text */
.blog-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #666666;  /* Grey for snippet text */
    text-align: left;
}

/* Tagline and emphasized text stays black */
.blog-content > p:first-of-type {
    color: black;
    font-weight: bold;
}

.blog-content strong {
    color: #4169e1;
    font-weight: bold;
}

.blog-content a {
    color: #4169e1;
    text-decoration: none;
}

.blog-content a:hover {
    color: #8b4513;
    text-decoration: underline;
}

/* Blog metadata styling */
.blog-content p:has(strong:first-child) {
    color: #666666;  /* Grey for the metadata text */
    font-size: 0.95rem;
}

/* Light orange highlight for metadata labels like "Published:", "Reading time:", "Topics:" */
.blog-content p:has(strong:first-child) strong {
    color: #ffa07a;
}

/* Blog Post Cards with Featured Images */
.blog-post-card {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.blog-post-image-link {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-image-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    flex: 1;
}

.blog-post-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.blog-post-content h3 a {
    color: #000033;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-content h3 a:hover {
    color: #4169e1;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 0.75rem;
}

.blog-post-meta strong {
    color: #ffa07a;
}

.blog-post-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-post-tags {
    font-size: 0.9rem;
    color: #888888;
}

.blog-post-tags strong {
    color: #ffa07a;
}

.blog-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: black !important;
    font-weight: bold !important;
    margin-bottom: 2rem;
}

/* Mobile responsive for blog cards */
@media (max-width: 768px) {
    .blog-post-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-post-image-link {
        width: 100%;
        height: 200px;
    }
}

/* Featured image on individual blog post pages */
.blog-post-featured-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content Base Styling */
.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.main-content:has(.blog-landing-page) {
    background-color: white !important;
    color: black !important;
    padding: 2rem 0 !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-content .blog-landing-page {
    background-color: white !important;
    color: black !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.standard-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #4169e1;
    text-align: left;
    font-family: 'Nexa', Arial, sans-serif;
}

.standard-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
    color: black;
    font-family: 'Nexa', Arial, sans-serif;
}

.standard-content strong {
    color: #4169e1;
    font-weight: bold;
}

.standard-content a {
    color: #4169e1;
    text-decoration: none;
}

.standard-content a:hover {
    color: #A0522D;
    text-decoration: underline;
}

/* Override main-content styles for standard pages */
.main-content:has(.standard-page) {
    background-color: white !important;
    color: black !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-content .standard-page {
    background-color: white !important;
    color: black !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Specific styling for use cases page */
body:has(.use-cases-page) .main-content .standard-page {
    padding-top: 0.25rem !important;
    margin-top: 0 !important;
}

.main-content .standard-page h1,
.main-content .standard-page h2,
.main-content .standard-page h3,
.main-content .standard-page h4,
.main-content .standard-page h5,
.main-content .standard-page h6 {
    color: black !important;
    text-align: left !important;
}

.main-content .standard-page h1 {
    text-align: center !important;
}

.main-content .standard-page p {
    color: black !important;
    text-align: left !important;
}

.main-content .standard-page strong {
    color: #4169e1 !important;
}

.main-content .standard-page a {
    color: #4169e1 !important;
}



/* Use Cases Page Styling */
.use-cases-page {
    background-color: white !important;
    color: black !important;
    min-height: 100vh !important;
}

.use-cases-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    color: black;
}

.use-cases-content h1 {
    font-size: 2.8rem !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    color: black !important;
    font-family: 'Nexa', Arial, sans-serif !important;
}

.use-cases-content h2 {
    font-size: 2rem !important;
    margin: 2.5rem 0 1.5rem 0 !important;
    color: #4169e1 !important;
    text-align: left !important;
    font-family: 'Nexa', Arial, sans-serif !important;
}

.use-cases-content h3 {
    font-size: 1.5rem !important;
    margin: 2rem 0 1rem 0 !important;
    color: #000033 !important;
    text-align: left !important;
    font-family: 'Nexa', Arial, sans-serif !important;
}

.use-cases-content p {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
    color: black !important;
    font-family: 'Nexa', Arial, sans-serif !important;
}

.use-cases-content ul {
    text-align: left !important;
    max-width: 900px !important;
    margin: 0 auto 2rem auto !important;
    padding-left: 2rem !important;
    list-style-type: disc !important;
}

.use-cases-content li {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.8rem !important;
    color: black !important;
    font-family: 'Nexa', Arial, sans-serif !important;
}

.use-cases-content strong {
    color: #4169e1 !important;
    font-weight: bold !important;
}

.use-cases-content a {
    color: #4169e1 !important;
    text-decoration: none;
    font-weight: bold;
}

.use-cases-content a:hover {
    color: #A0522D !important;
    text-decoration: underline;
}

/* AI-themed visual elements */
.ai-visual {
    background: linear-gradient(135deg, #000033 0%, #ffa07a 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.ai-visual h3 {
    color: white !important;
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
}

.ai-visual p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
}

/* Horizontal Gallery Styling */
.industry-gallery {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    margin: 3rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ffa07a #e9ecef;
}

.industry-gallery::-webkit-scrollbar {
    height: 8px;
}

.industry-gallery::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 4px;
}

.industry-gallery::-webkit-scrollbar-thumb {
    background: #ffa07a;
    border-radius: 4px;
}

.industry-gallery::-webkit-scrollbar-thumb:hover {
    background: #ff8c5a;
}

/* Industry Cards in Gallery */
.industry-gallery .industry-card {
    flex: 0 0 240px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    max-width: 240px;
    width: 240px;
}

.industry-gallery .industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #ffa07a;
}

.industry-gallery .industry-card .industry-icon {
    font-size: 4rem;
    margin-bottom: 0.1rem !important;
    display: block;
    background: linear-gradient(135deg, #4169e1 0%, #000080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(65, 105, 225, 0.3));
}

/* Benefits gallery - same styling as industry gallery but with green icons */
.benefits-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 2rem 0;
    margin: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #e9ecef transparent;
}

.benefits-gallery::-webkit-scrollbar {
    height: 8px;
}

.benefits-gallery::-webkit-scrollbar-track {
    background: transparent;
}

.benefits-gallery::-webkit-scrollbar-thumb {
    background: #e9ecef;
    border-radius: 4px;
}

.benefits-gallery::-webkit-scrollbar-thumb:hover {
    background: #dee2e6;
}

.benefits-gallery .industry-card {
    flex: 0 0 240px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-height: 220px;
    max-width: 240px;
    width: 240px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-gallery .industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #00fa9a;
}

.benefits-gallery .industry-card .industry-icon {
    font-size: 4rem;
    margin: 0 auto 0.1rem auto !important;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #00fa9a 0%, #006400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 250, 154, 0.3));
}

/* Icon image styling */
.industry-icon .icon-image {
    width: 4rem;
    height: 4rem;
    display: block !important;
    margin: 0 auto !important;
}

/* Make SVG icons match emoji size in benefits gallery */
.benefits-gallery .industry-icon .icon-image {
    width: 5.5rem !important;
    height: 5.5rem !important;
    display: block !important;
    margin: 0 auto 0.5rem auto !important;
    text-align: center !important;
}

.benefits-gallery .industry-card h3 {
    color: #000033 !important;
    font-size: 1.1rem !important;
    margin: 0 auto 1rem auto !important;
    text-align: center !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    width: 100% !important;
}

.benefits-gallery .industry-card .industry-content {
    text-align: left;
    flex-grow: 1;
    overflow: hidden;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.benefits-gallery .industry-card .industry-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%;
}

.benefits-gallery .industry-card .industry-content ul li {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
    padding: 0.2rem 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    position: relative;
    padding-left: 2.3rem !important;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: hidden;
    list-style-type: none !important;
    color: #666 !important;
}

.benefits-gallery .industry-card .industry-content ul li::before {
    content: "✓";
    background: linear-gradient(135deg, #00fa9a 0%, #006400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1rem;
    line-height: 1;
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    border-image: linear-gradient(135deg, #00fa9a 0%, #006400 100%) 1;
    border-radius: 3px;
}

/* Applications Gallery - Tech Blue with Arrow Bullets */
.applications-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 2rem 0;
    margin: 2rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.applications-gallery::-webkit-scrollbar {
    height: 8px;
}

.applications-gallery::-webkit-scrollbar-track {
    background: transparent;
}

.applications-gallery::-webkit-scrollbar-thumb {
    background: #e9ecef;
    border-radius: 4px;
}

.applications-gallery::-webkit-scrollbar-thumb:hover {
    background: #dee2e6;
}

.applications-gallery .industry-card {
    flex: 0 0 240px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    min-height: 320px;
}

.applications-gallery .industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.applications-gallery .industry-card .industry-icon {
    font-size: 4rem;
    margin: 0 auto 0.1rem auto !important;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #000033 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 51, 0.2));
}

.applications-gallery .industry-icon .icon-image {
    width: 5.5rem !important;
    height: 5.5rem !important;
    display: block !important;
    margin: 0 auto 0.5rem auto !important;
    text-align: center !important;
}

.applications-gallery .industry-card h3 {
    color: #000033 !important;
    font-size: 1.1rem !important;
    margin: 0 auto 1rem auto !important;
    text-align: center !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
}

.applications-gallery .industry-card .industry-content {
    text-align: left;
    flex-grow: 1;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
}

.applications-gallery .industry-card .industry-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%;
}

.applications-gallery .industry-card .industry-content ul li {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
    padding: 0.2rem 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100%;
    position: relative;
    padding-left: 2rem !important;
    color: #666 !important;
}

.applications-gallery .industry-card .industry-content ul li strong {
    color: #000033;
    background: linear-gradient(135deg, #000033 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.applications-gallery .industry-card .industry-content ul li::before {
    content: "→";
    background: linear-gradient(135deg, #000033 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comparison Table Styling */
.standard-page table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.standard-page table thead th {
    background: linear-gradient(135deg, #000033 0%, #0066cc 100%);
    color: white;
    padding: 1.2rem;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    border: none;
}

.standard-page table thead th:first-child {
    width: 30%;
    text-align: left;
}

.standard-page table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.standard-page table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.standard-page table tbody tr:hover {
    background-color: #e3f2fd;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.standard-page table tbody td {
    padding: 1.2rem;
    border: none;
    vertical-align: middle;
}

.standard-page table tbody td:first-child {
    font-weight: bold;
    color: #000033;
    background-color: rgba(0, 0, 51, 0.03);
    text-align: left;
    font-size: 1rem;
}

.standard-page table tbody td:nth-child(2) {
    text-align: center;
    background-color: rgba(0, 250, 154, 0.03);
}

.standard-page table tbody td:nth-child(3) {
    text-align: center;
    background-color: rgba(255, 160, 122, 0.03);
}

/* Style checkmarks and crosses with color */
.standard-page table tbody td:nth-child(2)::first-letter {
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 0.5rem;
    color: #00fa9a;
}

.standard-page table tbody td:nth-child(3)::first-letter {
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 0.5rem;
    color: #dc3545;
}

/* Keep text normal color */
.standard-page table tbody td:nth-child(2),
.standard-page table tbody td:nth-child(3) {
    color: #333;
}

/* Special styling for tilde (neutral) */
.standard-page table tbody td::first-letter {
    display: inline-block;
}

/* Mobile table responsiveness */
@media (max-width: 768px) {
    .standard-page table {
        font-size: 0.85rem;
    }
    
    .standard-page table thead th,
    .standard-page table tbody td {
        padding: 0.8rem 0.5rem;
    }
    
    .standard-page table tbody td:nth-child(2)::first-letter,
    .standard-page table tbody td:nth-child(3)::first-letter {
        font-size: 1.5rem;
    }
}

/* Mobile responsiveness for galleries */
@media (max-width: 768px) {
    .benefits-gallery,
    .applications-gallery {
        overflow-x: auto !important;
        flex-direction: row !important;
        align-items: stretch !important;
        padding: 1rem 0 !important;
        margin: 2rem 0 !important;
        gap: 1rem !important;
    }
    
    .benefits-gallery .industry-card,
    .applications-gallery .industry-card {
        flex: 0 0 200px !important;
        max-width: 200px !important;
        margin: 0 !important;
        display: flex !important;
    }
    
    .benefits-gallery .industry-card h3,
    .applications-gallery .industry-card h3,
    .industry-gallery .industry-card h3 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 100% !important;
    }
    
    .benefits-gallery .industry-icon,
    .applications-gallery .industry-icon,
    .industry-gallery .industry-icon {
        text-align: center !important;
    }
}

.industry-gallery .industry-card h3 {
    color: #000033 !important;
    font-size: 1.1rem !important;
    margin: 0 auto 1rem auto !important;
    text-align: center !important;
    font-family: 'Nexa', Arial, sans-serif !important;
    font-weight: bold !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.industry-gallery .industry-card .industry-content {
    text-align: left !important;
    flex-grow: 1;
    overflow: hidden;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.industry-gallery .industry-card .industry-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%;
}

.industry-gallery .industry-card .industry-content li {
    color: #333 !important;
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
    padding: 0.2rem 0 !important;
    border-bottom: 1px solid #e9ecef;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    position: relative;
    padding-left: 1rem;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    white-space: normal !important;
    word-break: break-word !important;
    overflow: hidden;
}

.industry-gallery .industry-card .industry-content li::before {
    content: "•";
    color: #ffa07a;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.3rem;
    font-size: 1.1rem;
}

.industry-gallery .industry-card .industry-content li:last-child {
    border-bottom: none;
}

/* Override any markdown list styling */
.industry-gallery .industry-card .industry-content ul li {
    list-style: none !important;
    list-style-type: none !important;
    display: block !important;
    color: #666 !important;
}

.industry-gallery .industry-card .industry-content li strong {
    background: linear-gradient(135deg, #4169e1 0%, #000080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold !important;
}

.industry-gallery .industry-card strong {
    color: #4169e1 !important;
    font-weight: bold !important;
}

/* Horizontal Gallery Container */
.use-cases-content {
    overflow-x: auto;
    white-space: nowrap;
    padding: 2rem 0;
    margin: 3rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ffa07a #e9ecef;
}

.use-cases-content::-webkit-scrollbar {
    height: 8px;
}

.use-cases-content::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 4px;
}

.use-cases-content::-webkit-scrollbar-thumb {
    background: #ffa07a;
    border-radius: 4px;
}

.use-cases-content::-webkit-scrollbar-thumb:hover {
    background: #ff8c5a;
}

/* Horizontal Gallery using h3 elements */
.use-cases-content h3 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 1rem 0 0 !important;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    width: 300px;
    vertical-align: top;
    white-space: normal;
}

.use-cases-content h3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ffa07a;
}

.use-cases-content h3::before {
    content: attr(data-icon);
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

/* Style the lists that follow each h3 */
.use-cases-content h3 + ul {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 0 2rem 2rem 2rem;
    margin: -2rem 1rem 2rem 0 !important;
    list-style: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}

.use-cases-content h3 + ul li {
    color: #333 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid #e9ecef;
}

.use-cases-content h3 + ul li:last-child {
    border-bottom: none;
}

.use-cases-content h3 + ul strong {
    color: #4169e1 !important;
    font-weight: bold !important;
}

/* Fallback for when gallery doesn't work */
.use-cases-content h3 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0 !important;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.use-cases-content h3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ffa07a;
}

.use-cases-content h3 + ul {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 0 2rem 2rem 2rem;
    margin: -2rem 0 2rem 0 !important;
    list-style: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.use-cases-content h3 + ul li {
    color: #333 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid #e9ecef;
}

.use-cases-content h3 + ul li:last-child {
    border-bottom: none;
}

.use-cases-content h3 + ul strong {
    color: #4169e1 !important;
    font-weight: bold !important;
}


/* Header Wrapper Styles */
.desktop-header-wrapper {
    display: block;
}

.mobile-header-wrapper {
    display: none;
}

/* Footer Wrapper Styles */
.desktop-footer-wrapper {
    display: block;
}

.mobile-footer-wrapper {
    display: none;
}

/* Desktop Footer Styles */
.desktop-footer .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 2rem;
    background-color: rgba(0, 0, 51, 0.95);
    color: white;
    min-height: 30px;
}

.desktop-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-footer .footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    text-align: left;
}

.desktop-footer .footer-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #cccccc;
}

.desktop-footer .abn {
    font-size: 0.75rem;
    color: #cccccc;
}

.desktop-footer .footer-symbol {
    height: 45px;
    width: auto;
}

.desktop-footer .footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.desktop-footer .footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.desktop-footer .footer-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.desktop-footer .footer-link:hover {
    color: #ffa07a;
}

/* Clean Desktop Header Styles */
.desktop-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.desktop-header .logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.desktop-header .main-navigation {
    display: flex;
    align-items: center;
    height: 100%;
}

.desktop-header .main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.desktop-header .header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-right: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-header-wrapper {
        display: none;
    }
    
    .mobile-header-wrapper {
        display: block;
    }
    
    .desktop-footer-wrapper {
        display: none;
    }
    
    .mobile-footer-wrapper {
        display: block;
    }
    
    /* Clean Mobile Header Styles */
    .mobile-header .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    
    .mobile-header .logo-section {
        transform: none !important;
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        display: flex !important;
        flex-direction: column !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    .mobile-header .logo-section .logo-link {
        text-align: left !important;
        align-items: flex-start !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }
    
    .mobile-header .logo-section .tagline {
        text-align: left !important;
        align-self: flex-start !important;
        margin-left: 0 !important;
    }
    
    .mobile-header .logo-section .header-logo {
        align-self: flex-start !important;
        margin-left: 0 !important;
    }
    
    .mobile-header .mobile-menu-toggle {
        position: absolute;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
        z-index: 10000;
        background: #ffa07a;
        color: white;
        border: 2px solid #ffa07a;
        padding: 0.6rem 0.8rem;
        font-size: 1.5rem;
        cursor: pointer;
        border-radius: 4px;
        min-width: 70px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-header .mobile-download-btn {
        position: absolute;
        top: 50%;
        right: 140px;
        transform: translateY(-50%);
        z-index: 10000;
        background: #ffa07a;
        color: white;
        border: 2px solid #ffa07a;
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
        text-align: center;
        border-radius: 4px;
        text-decoration: none;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        min-width: 85px;
    }
    
    .mobile-header .mobile-menu {
        position: fixed;
        top: 80px;
        right: 10px;
        width: 50%;
        max-width: 50vw;
        background: rgba(0, 0, 51, 0.98);
        color: white;
        padding: 0.5rem;
        z-index: 9999;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-header .mobile-nav-menu {
        list-style: none;
        margin: 0;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .mobile-header .mobile-nav-link {
        color: white !important;
        text-decoration: none;
        display: block;
        padding: 0.8rem 0.5rem;
        font-size: 1rem;
        font-family: 'Nexa', Arial, sans-serif;
        font-weight: bold;
        transition: all 0.2s ease;
        width: 100%;
        text-align: center;
        cursor: pointer;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        margin: 0.2rem 0;
        box-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }
    
    .mobile-header .mobile-nav-link:hover {
        background: linear-gradient(145deg, rgba(0, 0, 51, 0.8), rgba(0, 0, 51, 0.6));
        color: #ffa07a;
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    /* Clean Mobile Header Background */
    .mobile-header {
        background-color: rgba(0, 0, 51, 0.95);
        padding: 0;
        width: 100%;
        position: relative;
        margin: 0;
        overflow: visible;
        box-sizing: border-box;
    }
    
    /* Clean mobile body styles */
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    html {
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Clean mobile section containment */
    .mobile-header {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Header container with logo and menu button */
    .site-header .header-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 1rem !important;
        position: relative !important;
        max-width: none !important;
        margin: 0 !important;
        background-color: transparent !important;
        min-height: 80px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure no white space at edges */
    .site-header .header-container .logo-section {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Logo on the left */
    .header-container .logo-section {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
    }
    
    .logo-section .tagline {
        font-size: 0.8rem !important;
        margin-top: 0.1rem !important;
        text-align: right !important;
        max-width: 130px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        transform: translateX(5px) !important;
    }
    
    /* Mobile-specific logo positioning */
    .logo-section {
        transform: translateX(1.5rem) !important;
    }
    
    .header-container .main-navigation {
        display: none !important; /* Hidden on mobile */
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Menu button on the left, actions on the right */
    .site-header .header-container .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        margin-right: 100px !important; /* Move further left from mobile menu button */
        position: relative !important;
        z-index: 1000 !important;
        overflow: visible !important; /* Ensure header actions are not clipped */
    }
    
    /* Hide desktop navigation completely on mobile */
    .main-navigation .nav-menu {
        display: none !important;
    }
    
    /* Remove all old mobile menu CSS - using bulletproof version instead */
    
    /* Remove all old mobile menu CSS - using bulletproof version instead */
    
    /* Remove all old mobile menu CSS - using bulletproof version instead */
    
    /* Remove all old mobile menu CSS - using bulletproof version instead */
    
    /* Mobile gallery - keep horizontal scrolling */
    .industry-gallery {
        overflow-x: auto !important;
        flex-direction: row !important;
        align-items: stretch !important;
        padding: 1rem 0 !important;
        margin: 2rem 0 !important;
        gap: 1rem !important;
    }
    
    .industry-gallery .industry-card {
        flex: 0 0 200px !important;
        max-width: 200px !important;
        margin: 0 !important;
        display: flex !important;
    }
    
    /* Fix inline-block elements causing horizontal overflow */
    .industry-card,
    .use-case-card {
        display: block !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 1rem auto !important;
    }
    
    /* Clean mobile text wrapping */
    .mobile-header * {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    /* Mobile-friendly action buttons - exact same height as menu button */
    .site-header .header-container .header-actions .btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        min-width: 85px !important;
        flex: 0 0 auto !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.1 !important;
        max-width: 90px !important;
        height: 56px !important;
        min-height: 56px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        margin-left: 0.5rem !important;
        margin-top: -4px !important; /* Raise button higher to prevent cropping */
        color: white !important;
        z-index: 1001 !important; /* Ensure button is above any overlays */
        overflow: visible !important; /* Ensure button content is not clipped */
    }
    
    /* Stack buttons vertically on very small screens */
    @media (max-width: 480px) {
        .site-header .header-container .header-actions {
            flex-direction: column !important;
            gap: 0.3rem !important;
        }
        
        .site-header .header-container .header-actions .btn {
            padding: 0.5rem 0.8rem !important;
            font-size: 0.7rem !important;
            width: 100% !important;
            max-width: 100px !important;
            text-align: center !important;
            height: 56px !important;
            min-height: 56px !important;
        }
    }
    
    /* Main Content Mobile */
    .main-content {
        padding: 1rem !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    
    /* Use Cases Mobile */
    .use-cases-content {
        padding: 1rem !important;
        max-width: 100% !important;
    }
    
    .use-cases-content h1 {
        font-size: 2rem !important;
    }
    
    .use-cases-content h2 {
        font-size: 1.5rem !important;
    }
    
    .use-cases-content h3 {
        font-size: 1.2rem !important;
    }
    
    .use-cases-content ul {
        max-width: 100% !important;
        padding-left: 1rem !important;
    }
    
    /* General Mobile Typography */
    .main-content h1 {
        font-size: 2rem !important;
    }
    
    .main-content h2 {
        font-size: 1.5rem !important;
    }
    
    .main-content p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .main-content ul {
        max-width: 100% !important;
        padding-left: 1rem !important;
    }
    
    /* Override mobile main-content for standard pages */
    .standard-page {
        width: 100% !important;
        max-width: 100% !important;
        padding: 2rem 1.5rem !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    .standard-content {
        padding: 0 1rem !important;
    }
    
    /* Blog landing page same padding as standard pages */
    .blog-landing-page {
        padding: 2rem 1.5rem !important;
    }
    
    .blog-content {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .main-content .standard-page h1,
    .main-content .standard-page h2,
    .main-content .standard-page h3,
    .main-content .standard-page p {
        color: black !important;
        text-align: left !important;
    }
    
    .main-content .standard-page h1 {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .header-container {
        padding: 0.5rem !important;
    }
    
    .main-content {
        padding: 0.5rem !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .benefits-gallery .industry-card h3,
    .industry-gallery .industry-card h3 {
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Standard page mobile fix */
    .standard-page {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    .standard-content {
        padding: 0 0.5rem !important;
    }
    
    /* Blog landing page same padding as standard pages */
    .blog-landing-page {
        padding: 1.5rem 1rem !important;
    }
    
    .blog-content {
        padding: 0 0.5rem !important;
        max-width: 100% !important;
    }
    
    /* Mobile header - make it fit better */
    .mobile-header .header-container {
        padding: 0.5rem 0.25rem !important;
        gap: 0.25rem !important;
    }
    
    .mobile-header .logo-section {
        transform: translateX(0) !important;
        flex: 1 !important;
        max-width: 50% !important;
    }
    
    .mobile-header .header-logo {
        max-height: 30px !important;
        width: auto !important;
    }
    
    .mobile-header .tagline {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }
    
    .mobile-header .mobile-download-btn {
        right: 80px !important;
        font-size: 0.65rem !important;
        padding: 0.4rem 0.6rem !important;
        min-width: 75px !important;
        max-width: 85px !important;
        line-height: 1.1 !important;
    }
    
    .mobile-header .mobile-menu-toggle {
        right: 10px !important;
        padding: 0.4rem 0.5rem !important;
        font-size: 1.1rem !important;
        min-width: 50px !important;
    }
    
    /* Mobile footer - make it fit better */
    .mobile-footer .footer-container {
        padding: 0.25rem 0.5rem !important;
        gap: 0.5rem !important;
    }
    
    .mobile-footer img {
        height: 35px !important;
    }
    
    .mobile-footer .footer-links {
        gap: 0.15rem !important;
        font-size: 0.7rem !important;
    }
    
    .mobile-footer p {
        font-size: 0.65rem !important;
    }
    
    .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}
