:root {
    --bg-dark-blue: #041e42;
    --bg-off-white: #f8f7f2;
    --color-yellow: #f4cd4e;
    --color-orange: #ef533f;
    --color-white: #ffffff;
    --color-text-dark: #041e42;
    --color-text-light: #d1d5db;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-border-dark: rgba(4, 30, 66, 0.1);    
    --font-sans: 'Figtree', sans-serif;
    --font-serif: 'Kaisei Decol', serif;
}

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

html {
    scroll-behavior: smooth;
}
.page-id-128 .navbar.navbar-expand-lg.navbar-dark.sticky-top {
  background-color: #011c38;
}
body {
	font-weight: 500;
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--bg-dark-blue);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    font-family: 'Kaisei Decol', serif;
    font-weight: 500;
}


.e360-logo {
    height: 40px;
    width: auto;
}


.light-text {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 1px;
    margin-left: 0.5rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #d44331;
}

/* ================= HERO SECTION ================= */
.feature-card{background: #041e42 !important;}
.hero-section {
    z-index: 0;
	padding:0; 
	height: 60vh; 
	min-height: 400px;
}

.hero-content {
    max-width: 750px;
    margin-top: 0rem;
    padding: 0;
}

.initiative-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-yellow);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.shield-icon {
    font-size: 1.8rem;
}

.subtitle {
    color: var(--color-yellow);
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.main-heading {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 1rem; font-family: 'Kaisei Decol', serif; font-weight: 500;
}

.hero-description {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6; font-weight: 400;
}

.hero-divider {
    border: none;
   border-top: 1px solid rgb(255, 255, 255);
    margin: 1rem 0;
}

.small-italic {
    font-size: 0.8rem;
    font-style: italic;
    color: #cbd5e1;
}

.btn-yellow {
    background: var(--color-yellow);
    color: var(--color-text-dark);
    border: 1px solid var(--color-yellow);
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
}

.btn-yellow:hover {
    background: #e5b93d;
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-dark-blue);
}

.section-subtitle {
    color: var(--color-yellow);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
	width:auto;
	margin-left:0;
}

.section-subtitle.center {
    text-align: center;     margin-left: auto;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.section-heading.center {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.author-name {
    font-family: 'Fasthand', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.bottom-divider {
    border: none;
    border-top: 1px solid var(--color-border-light);
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-yellow);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
}

.process-steps span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.inline-icon {
    width: 28px;
    height: 28px;
    /* vertical-align: middle; no longer needed with flex */
}

/* ================= WHY WE BUILT THIS ================= */
.light-section {
    background-color: var(--bg-off-white);
    color: var(--color-text-dark);
    padding: 6rem 0;
}

.yellow-text {
    color: #cca42d;
}

.dark-text {
    color: var(--color-text-dark);
}

.why-built .section-heading {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

.why-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.why-quote {
    background: rgb(230, 233, 237);
    padding: 1.5rem 1.5rem;
    border-radius: 4px;
    border-left: 4px solid rgb(219, 187, 66);
}

.quote-img {
    height: 35px;
}

.quote-text {
    font-family: var(--font-sans);
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    color: var(--color-text-dark);
}

/* ================= WHO WE'RE BUILDING THIS WITH ================= */
.who-building {
    background: rgb(251, 248, 236);
    padding: 6rem 0 8rem;
    color: var(--color-text-dark);
}

.who-building .section-subtitle {
    color: var(--color-text-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.who-building .section-heading {
    font-family: 'Kaisei Decol', serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.5px;
    margin-bottom: 3.5rem;
    color: var(--color-text-dark);
}

.light-divider {
    border: none;
    border-top: 1px solid rgba(9, 0, 0, 0.66);
    margin: 0 0 4rem 0;
}

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

.audience-card {
    background: var(--color-white);
    padding: 1.5rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #01214733;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgb(219, 187, 66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-circle img {
    width: 24px;
    height: 24px;
}

.audience-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.audience-text {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Icons for process steps */
.inline-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 0.3rem;
}

/* Image styles for footer certifications */
.cert-img {
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ================= WHERE WE ARE SECTION ================= */
.where-we-are {
    background-color: var(--bg-dark-blue);
    padding: 8rem 0;
    color: var(--color-white);
}

.where-we-are-container {
    margin: 0 auto;
}

.where-we-are .section-subtitle {
    margin-bottom: 1.5rem;
}

.where-heading {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.where-we-are-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.leadership-quote {
    background: rgb(23, 48, 71);
    border-left: 4px solid var(--color-yellow);
    padding: 1.5rem 1rem;
    border-radius: 4px;
    margin-top: 4rem;
}

.quote-icon-container {
    
}

.leadership-quote .quote-img {
    height: 32px;
}

.quote-text-italic {
    font-family: var(--font-sans);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--color-white);
}

.quote-author {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ================= THREE STEPS SECTION ================= */
.three-steps {
    padding: 6rem 0;
    background-color: rgb(1, 26, 57);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    padding: 2rem;
}

.step-number {
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px rgb(219, 187, 66);
    line-height: 1;
    margin-right: 2.5rem;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-white);
}

.step-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.steps-divider {
    border: none;
    border-top: 1px solid var(--color-border-light);
    max-width: 800px;
    margin: 3rem auto;
}

.center {
    text-align: center;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 6rem 0 8rem;
    background-color: var(--bg-dark-blue);
}

.faq-heading {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 4rem;
    border-radius: 4px;
}

.faq-list {
    margin-top: 0;
}

.faq-item {
    display: flex;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q-col {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-white);
    width: 3.5rem;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--color-white);
}

.faq-answer {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ================= WHY WE CARE SECTION ================= */
.why-care-section {
    background-color: #dcb64b;
    padding: 8rem 0;
    color: var(--color-text-dark);
}

.why-care-section .section-heading{
    font-size: 3 rem;
}

.why-care-container {
    max-width: 800px;
    margin: 0 auto;
}

.why-care-content p {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.why-care-author {
    margin-top: 3rem;
}

.author-name {
    font-family: 'Brush Script MT', cursive, var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 1.375rem;
    font-weight: 500;
    font-style: italic;
}

/* ================= FINAL CTA SECTION ================= */
.final-cta {
    background-color: #041E42;
    padding: 6rem 0;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.cta-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 0 3rem 0;
    width: 100%; opacity: 1;
}

.cta-subtext {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 1);
    margin-top: 2rem;
}


/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none; /* simple mobile nav approach */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .brand-col {
        grid-column: span 3;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .where-heading {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .audiences-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .step-card {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .faq-container {
        padding: 2rem;
    }
    
    .faq-item {
        flex-direction: column;
    }
    
    .faq-q-col {
        margin-bottom: 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .brand-col {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .audiences-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-col {
        grid-column: span 1;
    }
}

