/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #1a237e;
    --emerald-green: #00695c;
    --gold: #ffd700;
    --dark-gold: #b8860b;
    --light-gold: #fff8dc;
    --steel-gray: #37474f;
    --light-gray: #eceff1;
    --white: #ffffff;
    --black: #000000;
    
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Inter', sans-serif;
}

body {
    font-family: var(--sans-font);
    line-height: 1.6;
    color: var(--steel-gray);
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--emerald-green) 100%);
    min-height: 100vh;
}

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

/* Progress Tracker */
.progress-tracker {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    z-index: 1000;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.progress-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.progress-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.progress-label {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
}

.progress-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--gold);
}

.progress-count {
    color: var(--light-gold);
    font-size: 11px;
}

.vault-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--navy-blue);
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.vault-badge.show {
    opacity: 1;
    transform: scale(1);
    animation: bounce 0.6s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vault-container {
    position: relative;
    width: 600px;
    height: 600px;
}

.vault-door {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, #4a5568, #2d3748),
        linear-gradient(45deg, #718096, #4a5568);
    border-radius: 50%;
    position: relative;
    border: 8px solid var(--steel-gray);
    box-shadow: 
        inset 0 0 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 215, 0, 0.3);
    transition: transform 3s ease;
    cursor: pointer;
}

.vault-door.opening {
    transform: rotateY(90deg);
}

.vault-handle {
    position: absolute;
    top: 50%;
    right: 50px;
    width: 60px;
    height: 20px;
    background: var(--gold);
    border-radius: 10px;
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.vault-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--dark-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--navy-blue);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

.vault-lock::before {
    content: '🔒';
    font-size: 40px;
}

.vault-interior {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--light-gold), var(--gold));
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease 2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vault-interior.show {
    opacity: 1;
    transform: scale(1);
}

.vault-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite alternate;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 400px;
}

.hero-title {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold-text {
    color: var(--dark-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--steel-gray);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 3s forwards;
}

.cta-button {
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: var(--navy-blue);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 1s ease 3.5s forwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

/* Guide Library */
.guide-library {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.guide-library::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 35, 126, 0.05), transparent),
        radial-gradient(circle at 80% 20%, rgba(0, 105, 92, 0.05), transparent);
}

.section-title {
    font-family: var(--serif-font);
    font-size: 3rem;
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    border-radius: 2px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.guide-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.guide-card:hover::before {
    left: 100%;
}

.guide-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.guide-card.unlocked {
    border-color: var(--emerald-green);
    background: linear-gradient(135deg, var(--white), rgba(0, 105, 92, 0.05));
}

.card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-card:hover .card-image img {
    transform: scale(1.1);
}

.guide-card h3 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.guide-card p {
    color: var(--steel-gray);
    margin-bottom: 20px;
}

.unlock-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

.guide-card.unlocked .unlock-icon {
    background: var(--emerald-green);
    color: var(--white);
}

.guide-card.unlocked .unlock-icon i::before {
    content: '\f09c'; /* fa-unlock */
}

/* Comparison Arena */
.comparison-arena {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-blue), var(--emerald-green));
    color: var(--white);
}

.battle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.card-fighter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
}

.card-fighter:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.fighter-image {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.fighter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-fighter h3 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--light-gold);
}

.fighter-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-weight: 500;
}

.stat-value {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.1rem;
}

.vs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 40px;
    position: relative;
}

.vs-text {
    font-family: var(--serif-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 20px;
}

.lightning {
    font-size: 2rem;
    color: var(--gold);
    animation: flash 2s infinite;
}

.winner-badge {
    text-align: center;
    background: var(--gold);
    color: var(--navy-blue);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: bounce 2s infinite;
}

/* FAQ Vault */
.faq-vault {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-lock {
    color: var(--steel-gray);
    transition: all 0.3s ease;
}

.faq-item.active .faq-lock {
    color: var(--gold);
    transform: rotate(45deg);
}

.faq-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.highlight-term {
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.emi-example, .cashback-flow {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.emi-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.coin {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--navy-blue);
    animation: bounce 2s infinite;
}

.arrow {
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.wallet {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.cashback-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-icon {
    font-size: 2rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--emerald-green);
}

/* Visual Explainers */
.visual-explainers {
    padding: 100px 0;
    background: var(--white);
}

.explainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.explainer-card {
    background: linear-gradient(135deg, var(--white), rgba(26, 35, 126, 0.05));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.explainer-card h3 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 30px;
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--light-gray);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--steel-gray);
    transition: all 0.3s ease;
}

.timeline-step.active .step-number {
    background: var(--gold);
    color: var(--navy-blue);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.timeline-step span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--steel-gray);
}

.score-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.meter-arc {
    width: 200px;
    height: 100px;
    position: relative;
    overflow: hidden;
}

.meter-arc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border: 20px solid var(--light-gray);
    border-radius: 50%;
    border-bottom-color: transparent;
}

.meter-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border: 20px solid transparent;
    border-radius: 50%;
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    border-bottom-color: transparent;
    transform: rotate(calc(var(--score) / 850 * 180deg - 90deg));
    transition: transform 2s ease;
}

.score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.score-label {
    font-weight: 600;
    color: var(--emerald-green);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-vault-bg {
    background: linear-gradient(135deg, var(--navy-blue), var(--emerald-green));
    position: relative;
    text-align: center;
    color: var(--white);
}

.light-beams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.2), transparent);
    animation: pulse 4s ease-in-out infinite;
}

.final-cta h2 {
    font-family: var(--serif-font);
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: var(--steel-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo h3 {
    font-family: var(--serif-font);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--gold);
    width: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-keys {
    display: flex;
    gap: 15px;
}

.social-key {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-key:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

.modal-header {
    padding: 30px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: var(--serif-font);
    font-size: 2rem;
    color: var(--navy-blue);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--steel-gray);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--navy-blue);
}

.modal-body {
    padding: 30px;
    line-height: 1.8;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* Legal Pages Styles */
.legal-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--emerald-green));
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-family: var(--serif-font);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo i {
    color: var(--gold);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.legal-content {
    padding: 80px 0;
    background: var(--white);
    min-height: 70vh;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.document-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--emerald-green));
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.document-header h1 {
    font-family: var(--serif-font);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--light-gold);
    font-size: 0.9rem;
}

.document-body {
    padding: 40px;
}

.intro {
    font-size: 1.1rem;
    color: var(--steel-gray);
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 5px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-family: var(--serif-font);
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.section h3 {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    color: var(--emerald-green);
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.section p {
    color: var(--steel-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.section ul {
    margin-left: 20px;
    color: var(--steel-gray);
}

.section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-section {
    background: rgba(26, 35, 126, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.contact-section h2 {
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--steel-gray);
    font-weight: 500;
}

.contact-details .contact-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-tracker {
        top: 10px;
        right: 10px;
        padding: 10px;
    }
    
    .vault-container {
        width: 400px;
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .battle-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .vs-section {
        margin: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .explainer-grid {
        grid-template-columns: 1fr;
    }
    
    .cashback-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .document-header {
        padding: 30px 20px;
    }
    
    .document-header h1 {
        font-size: 2rem;
    }
    
    .document-body {
        padding: 30px 20px;
    }
    
    .contact-details {
        gap: 12px;
    }
}