﻿:root {
    --primary-navy: #0e1b3d;
    --primary-gold: #c5a059;
    --bg-light: #f6f6f8;
    --text-muted: #6c757d;
}

body {
   
    background-color: var(--bg-light);
    color: var(--primary-navy);
    line-height: 1.2;
    margin: 0;
}

.serif-heading {
   
}

.text-gold {
    color: var(--primary-gold) !important;
}

.bg-navy {
    background-color: var(--primary-navy) !important;
}

.back-home-btn {
    color: #0e1b3d; 
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(14, 27, 61, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .back-home-btn:hover {
        background-color: #0e1b3d;
        color: #c5a059;
        transform: translateX(-5px); 
    }

    .back-home-btn i {
        font-size: 12px;
    }


.hero-dark-section {
    background-color: #0e1b3d;
    padding: 150px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
}


.trust-integrity-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.badge-line {
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
    opacity: 0.6;
}

.hero-title {
  
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    color:white;
}

.hero-subtitle {
   
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    margin-top: 100px;
}

/*  FAQs  */
.faq-section {
    max-width: 850px;
    margin: 80px auto;
    padding: 0 20px;
    margin-top: 10%;
}

.faq-header-container {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 42px;
    color: #0e1b3d;
    margin-bottom: 12px;
}

.gold-separator {
    width: 50px;
    height: 3px;
    background-color: #c5a059;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .faq-item:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
    color: #0e1b3d;
}

.faq-arrow {
    color: #c5a059;
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    transition: max-height 0.4s ease-out;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 30px 25px 30px;
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

