/* Reset and base styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #001c33;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Header Navigation */
.main-header {
    position: fixed;
    top: 0; /* below top-bar */
    width: 100%;
    z-index: 9999;
    height: 80px;
    background: transparent; /* transparent as requested */
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.main-header.scrolled {
    background-color: #001c33; /* Dark blue */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.main-header .container {
    flex-wrap: wrap;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 38px;
    margin-right: 10px;
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.navbar a:hover {
    color: #ffc107;
}

.navbar .highlight {
    color: #ffc107;
    font-weight: bold;
}

.btn-account {
    background-color: #ffc107;
    color: #001c33;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-account:hover {
    background-color: #e0a800;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    white-space: nowrap;
  }
  
  .btn-login {
    padding: 10px 18px;
    border: 2px solid #ffc107;
    background-color: transparent;
    color: #ffc107;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .btn-login:hover {
    background-color: #ffc107;
    color: #001c33;
  }

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/vault-bg.jpg') center/cover no-repeat;
    padding: 150px 20px 100px;
    text-align: center;
    color: #fff;
    padding-top: 160px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.4;
    margin: 0;
}

.hero .underline {
    border-bottom: 4px solid #ffc107;
    display: inline-block;
}

.hero p {
    font-size: 18px;
    margin-top: 20px;
    color: #ddd;
}

.info-section {
    background-color: #e9f2fb;
    padding: 60px 20px;
    color: #001c33;
}

.centered-text {
    text-align: center;
    margin-bottom: 40px;
}

.intro {
    font-size: 18px;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}

.feature-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin: 50px auto;
    flex-wrap: wrap;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-text ul {
    list-style: none;
    padding-left: 0;
}

.feature-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.feature-text .description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.feature-img {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.feature-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn-accounts {
    display: inline-block;
    margin-top: 20px;
    background-color: #ffc107;
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
}

.faq-section {
    background-color: #dff1ff;
    padding: 80px 20px;
    position: relative;
}

.faq-container {
    background: #063e87;
    color: #fff;
    max-width: 900px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.faq-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question span {
    font-weight: bold;
    font-size: 20px;
    color: #ffc107;
}

.faq-answer {
    display: none;
    padding: 10px 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: #d1e7ff;
}

/* Toggle display with JS class */
.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background-color: #e9f2fb;
    padding: 80px 20px;
    text-align: center;
}

.cta-container h2 {
    font-size: 32px;
    color: #001c33;
    margin-bottom: 15px;
}

.cta-container .highlight {
    color: #063e87;
    position: relative;
}

.cta-container .highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ffc107;
    left: 0;
    bottom: -5px;
    border-radius: 3px;
}

.cta-container p {
    font-size: 16px;
    color: #001c33;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-btn span {
    font-size: 18px;
}

.cta-btn.primary {
    background-color: #063e87;
    color: #fff;
}

.cta-btn.primary:hover {
    background-color: #052e6b;
}

.cta-btn.secondary {
    background-color: #fff;
    border: 2px solid #063e87;
    color: #063e87;
}

.cta-btn.secondary:hover {
    background-color: #063e87;
    color: #fff;
}

.site-footer {
    background: #001c33;
    color: #fff;
    padding-top: 60px;
    position: relative;
    font-size: 14px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

.footer-heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}
.footer-heading .highlight {
    color: #ffc107;
    position: relative;
}
.footer-heading .highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ffc107;
    bottom: -5px;
    left: 0;
}

.subscribe-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.subscribe-form input {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    width: 250px;
}
.subscribe-form button {
    background: #ffc107;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    color: #001c33;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #444;
}

.footer-logo img {
    height: 40px;
}
.footer-logo h3 {
    font-size: 22px;
    margin-top: 10px;
    color: #fff;
}
.social-icons a img {
    width: 22px;
    margin-right: 10px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-links .column h4 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
}
.footer-links .column ul {
    list-style: none;
    padding: 0;
}
.footer-links .column ul li {
    margin-bottom: 8px;
}
.footer-links .column ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-links .column ul li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
    color: #ccc;
}
.footer-disclaimer a {
    color: #ffc107;
    text-decoration: underline;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.policy-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
}
.policy-links a:hover {
    color: #ffc107;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffc107;
    color: #001c33;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}