/* Modern Industrial CSS System matching saemfg.com palette */
:root {
--sae-navy: #0b1e38;
/* Primary Navy Blue */
--sae-navy-dark: #061121;
/* Dark Header/Footer Navy */
--sae-red: #c8102e;
/* Accent Crimson Red */
--sae-red-hover: #9b0b21;
/* Hover Red */
--sae-gold: #d97706;
/* Highlight Gold */
--text-main: #1a202c;
/* Main Body Text */
--text-muted: #4a5568;
/* Secondary Subtitles */
--bg-light: #f4f6f9;
/* Section Light Slate */
--border-color: #e2e8f0;
/* Divider Lines */
--white: #ffffff;
--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
background-color: var(--white);
color: var(--text-main);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
font-family: 'Montserrat', sans-serif;
color: var(--sae-navy);
letter-spacing: -0.02em;
}

/* Top Utility Bar (saemfg.com Legacy Match) */
.top-utility-bar {
background-color: var(--sae-navy-dark);
color: #a0aec0;
font-size: 0.825rem;
padding: 0.4rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.utility-links a {
color: #cbd5e0;
text-decoration: none;
margin-left: 1.25rem;
transition: color 0.2s;
}

.utility-links a:hover {
color: var(--sae-red);
}

/* Main Navigation */
header {
background-color: var(--sae-navy);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow-md);
}

.nav-container {
max-width: 1280px;
margin: 0 auto;
padding: 1rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-brand {
display: flex;
align-items: center;
text-decoration: none;
}

.logo-text {
color: var(--white);
font-family: 'Montserrat', sans-serif;
font-weight: 900;
font-size: 1.8rem;
line-height: 1.1;
letter-spacing: 0.5px;
}

.logo-text span {
color: var(--sae-red);
}

.logo-subtext {
display: block;
color: #a0aec0;
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
}

.main-nav-links {
display: flex;
list-style: none;
gap: 1.75rem;
align-items: center;
}

.main-nav-links a {
color: var(--white);
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 0.5rem 0;
position: relative;
transition: color 0.2s;
}

.main-nav-links a:hover {
color: #e2e8f0;
}

.main-nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 3px;
background-color: var(--sae-red);
transition: width 0.25s ease;
}

.main-nav-links a:hover::after {
width: 100%;
}

.btn-rfq {
background-color: var(--sae-red);
color: var(--white) !important;
padding: 0.65rem 1.3rem;
border-radius: 4px;
font-weight: 700 !important;
letter-spacing: 0.5px;
transition: background 0.2s ease !important;
}

.btn-rfq:hover {
background-color: var(--sae-red-hover) !important;
}

.btn-rfq::after {
display: none !important;
}

/* Hero Section with Background Video */
.hero {
position: relative;
color: var(--white);
padding: 3rem 1.5rem 5rem;
border-bottom: 4px solid var(--sae-red);
overflow: hidden;
}

/* Video Background Element */
.hero-video-bg {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: 1;
transform: translate(-50%, -50%);
object-fit: cover;
}

/* Dark Overlay for Readability */
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* background: linear-gradient(135deg, rgba(11,30,56,0.90) 0%, rgba(6,17,33,0.82) 100%); */
/*background: linear-gradient(135deg,*/
/*rgba(11, 30, 56, 0.50) 0%,*/
/*rgba(6, 17, 33, 0.40) 100%);*/
z-index: 2;
}

.hero-inner {
position: relative;
z-index: 3;
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 15rem;
align-items: center;
text-align: justify;
}

.hero-title {
color: var(--white);
font-size: 2.5rem;
font-weight: 800;
line-height: 1.15;
margin-bottom: 1.25rem;
text-align: center;
}

.hero-title span {
color: var(--sae-red);
border-bottom: 3px solid var(--sae-red);
}

.hero-lead {
font-size: 1.15rem;
/*color: #cbd5e0;*/
color: white;
margin-bottom: 2rem;
line-height: 1.7;
font-weight: bold;
}
.hero-lead-sub{
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
}
.hero-badges {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 2rem;
}

.badge-item {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 0.5rem 1rem;
border-radius: 4px;
font-size: 0.85rem;
font-weight: 600;
color: #e2e8f0;
}

/* Quick Quote Form Box in Hero */
.hero-form-card {
background: var(--white);
border-radius: 8px;
padding: 2rem;
color: var(--text-main);
box-shadow: var(--shadow-lg);
border-top: 5px solid var(--sae-red);
}

.hero-form-card h3 {
font-size: 1.35rem;
margin-bottom: 0.5rem;
}

.hero-form-card p {
font-size: 0.875rem;
color: var(--text-muted);
margin-bottom: 1.25rem;
}

.form-group {
margin-bottom: 1rem;
}

.form-control {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 0.9rem;
transition: border-color 0.2s;
}

.form-control:focus {
outline: none;
border-color: var(--sae-navy);
}

.submit-btn {
width: 100%;
background-color: var(--sae-navy);
color: var(--white);
padding: 0.85rem;
border: none;
border-radius: 4px;
font-weight: 700;
font-size: 0.95rem;
cursor: pointer;
transition: background 0.2s;
}

.submit-btn:hover {
background-color: var(--sae-red);
}

/* Value Proposition Banner */
.value-banner {
background-color: var(--bg-light);
border-bottom: 1px solid var(--border-color);
padding: 2.5rem 1.5rem;
}

.value-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.value-item {
display: flex;
align-items: flex-start;
gap: 1rem;
}

.value-icon {
background-color: var(--sae-navy);
color: var(--white);
width: 48px;
height: 48px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1.2rem;
flex-shrink: 0;
}

.value-text h4 {
font-size: 1.05rem;
margin-bottom: 0.25rem;
}

.value-text p {
font-size: 0.875rem;
color: var(--text-muted);
}

/* Sections Structure */
.section {
padding: 5rem 1.5rem;
}

.section-header {
text-align: center;
max-width: 800px;
margin: 0 auto 3.5rem;
}

.section-header h2 {
font-size: 2.25rem;
margin-bottom: 0.75rem;
position: relative;
display: inline-block;
}

.section-header h2::after {
content: '';
display: block;
width: 60px;
height: 4px;
background-color: var(--sae-red);
margin: 0.75rem auto 0;
}

.section-header p {
color: var(--text-muted);
font-size: 1.05rem;
}

/* Products Grid */
.product-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
gap: 2rem;
}

.product-card {
background: var(--white);
border: 1px solid var(--border-color);
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.product-card:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-4px);
border-color: #cbd5e0;
}

.card-header-tag {
background-color: var(--sae-navy);
color: var(--white);
padding: 1.25rem 1.5rem;
border-left: 5px solid var(--sae-red);
}

.card-header-tag h3 {
color: var(--white);
font-size: 1.25rem;
margin: 0;
}

.card-body {
padding: 1.5rem;
flex-grow: 1;
}

.card-body p {
font-size: 0.9rem;
color: var(--text-muted);
margin-bottom: 1.25rem;
}

.spec-list {
list-style: none;
margin-bottom: 1.5rem;
}

.spec-list li {
font-size: 0.875rem;
padding: 0.4rem 0;
border-bottom: 1px dashed var(--border-color);
display: flex;
justify-content: space-between;
}

.spec-list li strong {
color: var(--sae-navy);
}

.card-footer {
padding: 1rem 1.5rem;
background-color: var(--bg-light);
border-top: 1px solid var(--border-color);
}

.card-footer a {
color: var(--sae-red);
font-weight: 700;
text-decoration: none;
font-size: 0.875rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.card-footer a:hover {
color: var(--sae-red-hover);
text-decoration: underline;
}

/* Industries Section Horizontal Cards */
.industry-section {
background-color: var(--sae-navy);
color: var(--white);
}

.industry-section .section-header h2 {
color: var(--white);
}

.industry-section .section-header p {
color: #a0aec0;
}

.industry-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
}

.industry-box {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
padding: 1.75rem 1.25rem;
text-align: center;
transition: all 0.3s ease;
}

.industry-box:hover {
background: rgba(255, 255, 255, 0.1);
border-color: var(--sae-red);
transform: translateY(-3px);
}

.industry-box h4 {
color: var(--white);
font-size: 1.1rem;
margin-top: 0.5rem;
}

.industry-box p {
font-size: 0.825rem;
color: #cbd5e0;
margin-top: 0.5rem;
}

/* Technical Positioning Statement */
.position-container {
max-width: 1000px;
margin: 0 auto;
background-color: var(--bg-light);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 3rem;
position: relative;
}

.position-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 6px;
height: 100%;
background-color: var(--sae-red);
border-radius: 8px 0 0 8px;
}

.position-container h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.position-container p {
color: var(--text-muted);
font-size: 1rem;
margin-bottom: 1.25rem;
line-height: 1.7;
}

/* Footer */
footer {
background-color: var(--sae-navy-dark);
color: #a0aec0;
font-size: 0.875rem;
border-top: 3px solid var(--sae-red);
}

.footer-main {
max-width: 1280px;
margin: 0 auto;
padding: 4rem 1.5rem 3rem;
display: grid;
grid-template-columns: 1.5fr repeat(3, 1fr);
gap: 2.5rem;
}

.footer-col h4 {
color: var(--white);
font-size: 1rem;
margin-bottom: 1.25rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 0.6rem;
}

.footer-col ul a {
color: #cbd5e0;
text-decoration: none;
transition: color 0.2s;
}

.footer-col ul a:hover {
color: var(--sae-red);
}

.footer-bottom {
background-color: rgba(0, 0, 0, 0.3);
padding: 1.5rem 0;
text-align: center;
font-size: 0.8rem;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
.hero-inner {
grid-template-columns: 1fr;
}

.footer-main {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
.utility-container {
flex-direction: column;
gap: 0.5rem;
text-align: center;
}

.main-nav-links {
display: none;
/* Can be toggled with JS */
}

.hero-title {
font-size: 2.15rem;
}

.footer-main {
grid-template-columns: 1fr;
}

.footer-bottom-container {
flex-direction: column;
text-align: center;
}
}


/* Add or update these styles inside style.css for UI styling */
.form-alert {
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}


/* =========================================================
   EXACT RED BAR FOOTER STYLES
   ========================================================= */
.red-bar-footer {
    background-color: #ba0000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px 0;
    width: 100%;
}

.footer-content-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Top Row Layout */
.footer-top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.footer-address {
    color: #ffffff;
}

.footer-meta-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.footer-meta-item {
    white-space: nowrap;
}

/* Social Media Icons */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
}

.footer-social-links a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-social-links a:hover {
    opacity: 0.8;
}

/* Divider */
.footer-line-divider {
    border: none;
    border-top: 1px solid #ffffff;
    margin: 5px 0;
    width: 100%;
}

/* Bottom Row Layout */
.footer-bottom-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.footer-copyright {
    color: #ffffff;
}

.footer-legal-nav {
    color: #ffffff;
}

.footer-legal-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0 4px;
}

.footer-legal-nav a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-top-line, 
    .footer-bottom-line {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-meta-right {
        flex-direction: column;
        gap: 8px;
    }

    .footer-social-links {
        margin-left: 0;
        margin-top: 5px;
    }
}

/* Main Container Grid */
    .policy-page-container {
        max-width: 1250px;
        margin: 40px auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 35px;
        font-family: Arial, sans-serif;
    }

    /* Sticky Left Sidebar Navigation */
    .policy-sidebar {
        position: sticky;
        top: 90px;
        height: fit-content;
    }

    .sidebar-widget {
        background: #ffffff;
        border: 1px solid var(--sae-border);
        border-radius: 8px;
        padding: 22px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        margin-bottom: 25px;
    }

    .widget-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--sae-navy);
        margin: 0 0 15px 0;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--sae-red);
        text-transform: uppercase;
    }

    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-menu li {
        margin-bottom: 10px;
    }

    .sidebar-menu a {
        color: var(--sae-muted);
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        padding: 6px 10px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .sidebar-menu a:hover {
        background-color: var(--sae-light-bg);
        color: var(--sae-red);
        font-weight: 600;
        padding-left: 14px;
    }

    .sidebar-contact-card {
        background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
        border-left: 4px solid var(--sae-navy);
    }

    .sidebar-contact-card p {
        font-size: 0.85rem;
        color: var(--sae-muted);
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .btn-contact-spec {
        display: inline-block;
        width: 100%;
        text-align: center;
        background-color: var(--sae-navy);
        color: #ffffff;
        padding: 10px 0;
        border-radius: 4px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        transition: background-color 0.2s;
    }

    .btn-contact-spec:hover {
        background-color: var(--sae-red);
        color: #ffffff;
    }

    /* Main Policy Content Area */
    .policy-content-card {
        background: #ffffff;
        border: 1px solid var(--sae-border);
        border-radius: 8px;
        padding: 45px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .policy-notice-banner {
        background-color: #fef2f2;
        border-left: 4px solid var(--sae-red);
        padding: 16px 20px;
        border-radius: 0 6px 6px 0;
        margin-bottom: 35px;
    }

    .policy-notice-banner p {
        margin: 0;
        color: #991b1b;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .policy-section {
        margin-bottom: 40px;
        scroll-margin-top: 100px; /* Offset for sticky header anchor clicks */
    }

    .policy-section h2 {
        color: var(--sae-navy);
        font-size: 1.35rem;
        font-weight: 700;
        margin: 0 0 14px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid var(--sae-border);
        padding-bottom: 10px;
    }

    .policy-section h2 i {
        color: var(--sae-red);
        font-size: 1.1rem;
    }

    .policy-section p {
        color: #475569;
        font-size: 0.96rem;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .policy-section ul {
        margin: 12px 0 20px 20px;
        padding: 0;
    }

    .policy-section li {
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .contact-details-box {
        background-color: var(--sae-light-bg);
        border: 1px solid var(--sae-border);
        padding: 20px 25px;
        border-radius: 6px;
        margin-top: 15px;
    }

    .contact-details-box p {
        margin: 6px 0;
        font-size: 0.92rem;
    }

    /* Responsive Mobile Breakpoint */
    @media (max-width: 992px) {
        .policy-page-container {
            grid-template-columns: 1fr;
        }

        .policy-sidebar {
            position: static;
        }

        .policy-content-card {
            padding: 25px;
        }
    }
    
    .breadcrumb-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: #94a3b8;
    }

    .breadcrumb-nav a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .breadcrumb-nav a:hover {
        color: #ffffff;
    }

    .breadcrumb-separator {
        color: var(--sae-red);
        font-weight: bold;
    }
    


    /* Inner Page Hero Banner */
    .inner-hero-banner {
        background: linear-gradient(135deg, var(--sae-navy) 0%, #061325 100%);
        color: #ffffff;
        padding: 20px 20px;
        text-align: center;
        position: relative;
        border-bottom: 4px solid var(--sae-red);
    }

    .inner-hero-banner h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 10px 0;
        letter-spacing: 0.5px;
        color: #ffffff;
        text-transform: uppercase;
    }
    
    
    /* Main Container Grid */
    .terms-page-container {
        max-width: 1250px;
        margin: 40px auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 35px;
        font-family: Arial, sans-serif;
    }

    /* Sticky Left Sidebar Navigation */
    .terms-sidebar {
        position: sticky;
        top: 90px;
        height: fit-content;
    }

    .sidebar-widget {
        background: #ffffff;
        border: 1px solid var(--sae-border);
        border-radius: 8px;
        padding: 22px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        margin-bottom: 25px;
    }

    .widget-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--sae-navy);
        margin: 0 0 15px 0;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--sae-red);
        text-transform: uppercase;
    }

    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-menu li {
        margin-bottom: 10px;
    }

    .sidebar-menu a {
        color: var(--sae-muted);
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        padding: 6px 10px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .sidebar-menu a:hover {
        background-color: var(--sae-light-bg);
        color: var(--sae-red);
        font-weight: 600;
        padding-left: 14px;
    }

    .sidebar-contact-card {
        background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
        border-left: 4px solid var(--sae-navy);
    }

    .sidebar-contact-card p {
        font-size: 0.85rem;
        color: var(--sae-muted);
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .btn-contact-spec {
        display: inline-block;
        width: 100%;
        text-align: center;
        background-color: var(--sae-navy);
        color: #ffffff;
        padding: 10px 0;
        border-radius: 4px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        transition: background-color 0.2s;
    }

    .btn-contact-spec:hover {
        background-color: var(--sae-red);
        color: #ffffff;
    }

    /* Main Content Card */
    .terms-content-card {
        background: #ffffff;
        border: 1px solid var(--sae-border);
        border-radius: 8px;
        padding: 45px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .terms-notice-banner {
        background-color: #fef2f2;
        border-left: 4px solid var(--sae-red);
        padding: 16px 20px;
        border-radius: 0 6px 6px 0;
        margin-bottom: 35px;
    }

    .terms-notice-banner p {
        margin: 0;
        color: #991b1b;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .terms-section {
        margin-bottom: 40px;
        scroll-margin-top: 100px;
    }

    .terms-section h2 {
        color: var(--sae-navy);
        font-size: 1.35rem;
        font-weight: 700;
        margin: 0 0 14px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid var(--sae-border);
        padding-bottom: 10px;
    }

    .terms-section h2 i {
        color: var(--sae-red);
        font-size: 1.1rem;
    }

    .terms-section p {
        color: #475569;
        font-size: 0.96rem;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .terms-section ul {
        margin: 12px 0 20px 20px;
        padding: 0;
    }

    .terms-section li {
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .legal-highlight-box {
        background-color: var(--sae-light-bg);
        border: 1px solid var(--sae-border);
        padding: 20px 25px;
        border-radius: 6px;
        margin-top: 15px;
    }

    .legal-highlight-box p {
        margin: 6px 0;
        font-size: 0.92rem;
    }

    @media (max-width: 992px) {
        .terms-page-container {
            grid-template-columns: 1fr;
        }

        .terms-sidebar {
            position: static;
        }

        .terms-content-card {
            padding: 25px;
        }
    }
    
.top-utility-bar-mail{
    color: #a0aec0;
}

.top-utility-bar-mail:hover{
    font-weight: bold;
    text-decoration: underline;
}