/* Core Variables for Vedic Theme */
:root {
    --bg-bhojpatra: #FDF8EE;
    --primary-bhagwa: #FF9933;
    --accent-kumkum: #C62828;
    --text-dark: #2C1E16;
    --gold-shadow: rgba(218, 165, 32, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-bhojpatra);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Yatra One', system-ui;
    font-weight: 400;
}

/* Navbar Styling */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.logo { font-size: 2rem; color: var(--accent-kumkum); }
.logo span { color: var(--primary-bhagwa); }

.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-bhagwa); }

/* Buttons */
.btn-login, .btn-primary, .btn-secondary {
    padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: all 0.3s ease;
}
.btn-login { border: 2px solid var(--primary-bhagwa); color: var(--primary-bhagwa); }
.btn-login:hover { background-color: var(--primary-bhagwa); color: #fff; }
.btn-primary { background-color: var(--primary-bhagwa); color: #fff; border: 2px solid var(--primary-bhagwa); box-shadow: 0 4px 15px var(--gold-shadow); }
.btn-secondary { background-color: var(--accent-kumkum); color: #fff; border: 2px solid var(--accent-kumkum); }

/* Hero Section */
.hero {
    text-align: center; padding: 100px 20px;
    background: radial-gradient(circle, #fff 0%, var(--bg-bhojpatra) 100%);
    border-bottom: 2px solid rgba(255, 153, 51, 0.2);
}
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: var(--text-dark); }
.hero h1 span { color: var(--primary-bhagwa); }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }
.hero-buttons { display: flex; justify-content: center; gap: 15px; }

/* Footer */
footer { text-align: center; padding: 20px; background-color: var(--text-dark); color: #fff; margin-top: 50px; }

/* Course Grid & Cards (Legacy Fallback) */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 50px 50px; max-width: 1200px; margin: 0 auto; }
.course-card { background-color: #fff; padding: 30px; border-radius: 10px; border: 1px solid rgba(218, 165, 32, 0.4); box-shadow: 0 4px 15px var(--gold-shadow); transition: transform 0.3s ease; text-align: center; }
.course-card:hover { transform: translateY(-5px); }
.course-card h3 { color: var(--accent-kumkum); font-size: 1.5rem; margin-bottom: 15px; }
.level-badge { background-color: var(--bg-bhojpatra); color: var(--primary-bhagwa); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; border: 1px solid var(--primary-bhagwa); }
.course-card p { margin: 15px 0; font-size: 0.95rem; color: #555; }
.course-card .price { font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: 20px; }

/* Login Page Specific Styles */
.login-page { background: radial-gradient(circle, #fff 0%, var(--bg-bhojpatra) 100%); min-height: 100vh; display: flex; flex-direction: column; }
.login-container { flex-grow: 1; display: flex; justify-content: center; align-items: center; padding: 40px 20px; }
.login-box { background-color: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 4px 20px var(--gold-shadow); width: 100%; max-width: 400px; border-top: 5px solid var(--primary-bhagwa); }
.login-box h2 { text-align: center; color: var(--accent-kumkum); margin-bottom: 5px; }
.login-box .subtitle { text-align: center; color: #666; margin-bottom: 25px; font-size: 0.9rem; }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); }
.input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: 'Poppins', sans-serif; }
.input-group input:focus { outline: none; border-color: var(--primary-bhagwa); box-shadow: 0 0 5px rgba(255, 153, 51, 0.3); }
.w-100 { width: 100%; display: block; text-align: center; font-size: 1.1rem; padding: 12px; }
.error-msg { background-color: #ffebee; color: var(--accent-kumkum); padding: 10px; border-radius: 5px; margin-bottom: 20px; text-align: center; border: 1px solid #ffcdd2; }
.login-footer { margin-top: 20px; text-align: center; font-size: 0.9rem; }
.login-footer a { color: var(--primary-bhagwa); text-decoration: none; font-weight: 600; }

/* =========================================
   MOBILE RESPONSIVENESS (Max Width: 768px)
   ========================================= */
@media screen and (max-width: 768px) {
    .row, .about-content { flex-direction: column !important; gap: 20px; }
    .col { width: 100%; }
    .navbar { flex-direction: column; text-align: center; padding: 15px; }
    .nav-links { display: flex; flex-direction: column; gap: 15px; margin-top: 15px; padding: 0; }
    .about-hero h1, .consult-header h1 { font-size: 2rem; }
    .about-hero, .consult-header { padding: 40px 15px; }
    .form-container, .consult-container { padding: 20px; margin: 20px 10px; width: auto; }
    img { max-width: 100%; height: auto; }
    .expertise-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
    .about-text { text-align: center; }
    .about-text .btn-primary, .about-text .btn-secondary { display: block; width: 100%; margin-left: 0 !important; margin-bottom: 15px; text-align: center; box-sizing: border-box; }
    .courses-grid, .course-list { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-left: 0 !important; margin: 0; width: 100%; }
    .course-card { width: 100%; max-width: 350px; margin: 0 auto 25px auto !important; box-sizing: border-box; }
}

/* =========================================
   VEDIC MEGA FOOTER FIXES
   ========================================= */
.vedic-mega-footer { background-color: #2c1e16; color: #fdf5e6; font-family: 'Poppins', sans-serif; border-top: 5px solid #d35400; margin-top: 60px; padding-top: 40px; }
.vedic-mega-footer .footer-top { padding: 0 20px 30px; border-bottom: 1px solid #4a3325; }
.vedic-mega-footer .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: 0 auto; gap: 30px; text-align: left !important; }
.vedic-mega-footer .footer-widget { flex: 1; min-width: 220px; }
.vedic-mega-footer .footer-widget h4 { color: #f39c12; font-size: 1.15rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; border-left: 3px solid #d35400; padding-left: 10px; }
.vedic-mega-footer .footer-links { list-style: none !important; padding: 0; margin: 0; }
.vedic-mega-footer .footer-links li { margin-bottom: 12px; text-align: left; }
.vedic-mega-footer .footer-links a { color: #e5d0b3 !important; text-decoration: none !important; font-size: 0.95rem; transition: color 0.3s ease; }
.vedic-mega-footer .footer-links a:hover { color: #f39c12 !important; }
.vedic-mega-footer .footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 20px; }
.vedic-mega-footer .footer-seo-text p { color: #a89481; font-size: 0.85rem; line-height: 1.6; text-align: justify; margin-bottom: 15px; }
.vedic-mega-footer .copyright-strip { text-align: center; border-top: 1px solid #4a3325; padding-top: 15px; color: #e5d0b3; font-size: 0.9rem; }
@media screen and (max-width: 768px) {
    .vedic-mega-footer .footer-grid { flex-direction: column; }
    .vedic-mega-footer .footer-seo-text p { text-align: center; }
}

.chakra-bg { position: absolute; top: 50%; left: 40%; width: 100%; max-width: 500px; filter: invert(1); mix-blend-mode: multiply; opacity: 0.08; z-index: 0; pointer-events: none; animation: spinChakraResponsive 90s linear infinite; }
@keyframes spinChakraResponsive { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* =========================================
   NEW: COSMIC RIVER LAYOUT & DROPDOWN (OVERRIDES)
   ========================================= */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: #ffffff; min-width: 200px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); z-index: 100; border-radius: 8px; padding: 0; margin: 0; list-style: none; top: 100%; left: 0; border: 1px solid #eaeaea; }
.dropdown-content li a { color: #2c1e16; padding: 12px 20px; text-decoration: none; display: block; font-size: 0.95rem; font-weight: normal; border-bottom: 1px solid #f0f0f0; transition: background 0.3s ease; }
.dropdown-content li:last-child a { border-bottom: none; }
.dropdown-content li a:hover { background-color: #fff5eb; color: #d35400; }
.dropdown:hover .dropdown-content { display: block; }

/* 🚀 FIX: CENTER ALIGNMENT FOR SECTION TITLES */
.section-title h2, .services-header h2 { position: relative; display: inline-block; padding-bottom: 15px; margin: 0 auto; text-align: center; }
.section-title h2::after, .services-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #d35400; border-radius: 5px; }

.section-title { width: 100%; text-align: center; margin-bottom: 30px; }

.hero-section { background: #fffcf5; padding: 80px 20px; border-bottom: 1px solid #f0e6d3; }
.courses { background: #ffffff; padding: 80px 20px; position: relative; box-shadow: 0 -10px 40px rgba(0,0,0,0.02); }
.services-section { background: #fffafa; padding: 80px 20px; border-top: 1px solid #f9ece5; box-shadow: inset 0 10px 40px rgba(0,0,0,0.02); }


/* =========================================
   🔥 BRAND VENTURES STYLE CARDS (4:5 RATIO, IMAGE CONTAIN FIX)
   ========================================= */
.bv-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.bv-card {
    width: 100%;
    max-width: 320px; 
    aspect-ratio: 4 / 5; 
    background-color: #1a120d;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(211, 84, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.bv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 84, 0, 0.4);
}

.bv-card-img-wrapper {
    width: 100%;
    flex-grow: 1;
    margin-bottom: 12px;
    background: transparent; 
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.bv-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: center top; 
}

.bv-card-title {
    color: #ffffff;
    font-family: 'Yatra One', cursive;
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.2;
}

.bv-card-desc {
    color: #b3a8a1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bv-card-link {
    color: #f39c12; 
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: auto;
}

.bv-card-link:hover { color: #ffffff; }

/* =========================================
   🎓 COURSES CARDS - IMAGE ONLY (FULL CARD)
   ========================================= */
.courses .bv-card {
    padding: 0 !important; 
    background-color: transparent !important;
    border: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.courses .bv-card .bv-card-img-wrapper {
    margin: 0 !important;
    height: 100% !important;
    border-radius: 12px !important; 
    background: #1a120d; 
}

.courses .bv-card .bv-card-img-wrapper img {
    object-fit: contain; 
    object-position: center; 
}

/* Hide text details for courses */
.courses .bv-card > div:not(.bv-card-img-wrapper),
.courses .bv-card .level-badge,
.courses .bv-card .bv-card-title,
.courses .bv-card .bv-card-desc {
    display: none !important;
}

/* Transparent clickable overlay for courses */
.courses .bv-card .bv-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    z-index: 10;
    display: block;
    margin: 0;
    padding: 0;
    text-indent: -9999px; 
}

/* --- PREMIUM PAGES CSS (Course Details) --- */
body { background-color: #fcf9f6; } 
.course-page-header { text-align: center; padding: 60px 20px 40px; }
.course-badge { display: inline-block; background: #fff5eb; color: #d35400; padding: 8px 20px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(211, 84, 0, 0.2); }
.course-title { font-family: 'Yatra One', cursive; font-size: 3.5rem; color: #2c1e16; margin-bottom: 15px; }

.premium-container { max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.content-card { background: #ffffff; border-radius: 20px; padding: 40px 50px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); border: 1px solid rgba(211, 84, 0, 0.05); }
.course-main-image { width: 100%; height: auto; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-bottom: 30px; }
.course-text { font-family: 'Poppins', sans-serif; color: #444; line-height: 1.8; font-size: 1.05rem; }
.course-text h2 { color: #2c1e16; font-family: 'Yatra One', cursive; font-size: 2rem; margin: 30px 0 15px; }

.sticky-enroll-card { background: linear-gradient(145deg, #2c1e16 0%, #1a120d 100%); border-radius: 20px; padding: 40px 30px; text-align: center; position: sticky; top: 100px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); overflow: hidden; border-top: 5px solid #d35400; }
.enroll-content { position: relative; z-index: 1; }
.price-label { color: #e0e0e0; font-size: 1.1rem; margin-bottom: 5px; }
.price-tag { font-family: 'Yatra One', cursive; font-size: 3.5rem; color: #ffffff; margin-bottom: 15px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.price-tag span { font-size: 2rem; color: #d35400; } 
.sticky-enroll-card p { color: #b3a8a1; font-size: 0.95rem; margin-bottom: 30px; line-height: 1.5; }
.btn-enroll { display: block; background-color: #d35400; color: #ffffff; padding: 16px 30px; font-size: 1.2rem; font-weight: bold; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; width: 100%; box-sizing: border-box; box-shadow: 0 10px 20px rgba(211, 84, 0, 0.4); }
.btn-enroll:hover { background-color: #ffffff; color: #d35400; transform: translateY(-3px); }
.feature-list { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; color: #e0e0e0; font-size: 0.95rem; }
.feature-list li { margin-bottom: 12px; display: flex; align-items: center; }
.feature-list li::before { content: '✨'; margin-right: 10px; font-size: 1.1rem; }

@media (max-width: 900px) {
    .premium-container { grid-template-columns: 1fr; }
    .content-card { padding: 30px 20px; }
    .course-title { font-size: 2.5rem; }
    .sticky-enroll-card { position: relative; top: 0; margin-top: 20px; }
}

/* --- PREMIUM PAGES CSS (Service Details) --- */
.service-page-header { text-align: center; padding: 60px 20px 40px; }
.service-title { font-family: 'Yatra One', cursive; font-size: 3.5rem; color: #2c1e16; margin-bottom: 15px; }
.service-subtitle { font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: #d35400; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.content-icon { width: 100%; max-width: 600px; height: auto; aspect-ratio: 16/9; object-fit: contain; border-radius: 15px; margin: 0 auto 30px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-text { font-family: 'Poppins', sans-serif; color: #444; line-height: 1.8; font-size: 1.05rem; }
.service-text p { margin-bottom: 20px; }
.service-text strong { color: #2c1e16; font-weight: 600; }

.sticky-cta-card { background: linear-gradient(145deg, #2c1e16 0%, #1a120d 100%); border-radius: 20px; padding: 40px 30px; text-align: center; position: sticky; top: 100px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); overflow: hidden; }
.sticky-cta-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(211,84,0,0.15) 0%, transparent 60%); z-index: 0; pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.sticky-cta-card h3 { font-family: 'Yatra One', cursive; font-size: 2rem; color: #ffffff; margin-bottom: 15px; }
.sticky-cta-card p { color: #e0e0e0; font-size: 0.95rem; margin-bottom: 30px; line-height: 1.6; }
.btn-consultation { display: inline-block; background-color: #d35400; color: #ffffff; padding: 15px 30px; font-size: 1.1rem; font-weight: bold; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; width: 100%; box-sizing: border-box; box-shadow: 0 10px 20px rgba(211, 84, 0, 0.4); }
.btn-consultation:hover { background-color: #ffffff; color: #d35400; transform: translateY(-3px); }

@media (max-width: 900px) {
    .service-title { font-size: 2.5rem; }
    .sticky-cta-card { position: relative; top: 0; margin-top: 20px; }
}

/* --- PREMIUM PAGES CSS (FAQs) --- */
.faq-header { background-color: #fffcf5; padding: 60px 20px; text-align: center; border-bottom: 4px solid #fff5eb; }
.faq-header h1 { font-family: 'Yatra One', cursive; font-size: 3.5rem; color: #d35400; margin-bottom: 10px; }
.faq-container { max-width: 800px; margin: 60px auto; padding: 0 20px; }
details { background: #ffffff; border: 1px solid #eaeaea; border-radius: 12px; margin-bottom: 15px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); transition: all 0.3s ease; }
details[open] { border-color: #d35400; box-shadow: 0 10px 25px rgba(211,84,0,0.08); }
summary { font-family: 'Poppins', sans-serif; font-weight: 600; color: #2c1e16; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; outline: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: #d35400; transition: transform 0.3s ease; }
details[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-ans { margin-top: 15px; color: #555; line-height: 1.8; font-family: 'Poppins', sans-serif; font-size: 0.95rem; padding-top: 15px; border-top: 1px dashed #eee; }

/* =========================================
   CLEAN NAVBAR FIXES (SPACIOUS & LARGER TEXT)
   ========================================= */
.main-header { 
    background-color: #ffffff !important; 
    border-bottom: none !important; 
    padding: 15px 2% !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: space-between !important; 
}
.navbar { 
    width: 100% !important; 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
}
.logo { flex-shrink: 0 !important; }
.nav-links { 
    display: flex; 
    gap: 15px !important; 
    align-items: center !important; 
    flex-wrap: nowrap !important; 
    margin: 0 !important; 
    padding: 0 !important; 
    justify-content: flex-end; 
}
.nav-links li { list-style: none; white-space: nowrap !important; }

.nav-links a, .nav-links a[href="track_booking.php"], .btn-login, .btn-consult { 
    display: inline-flex !important; 
    align-items: center; 
    font-size: 0.95rem !important; 
    font-weight: 600 !important; 
    color: #2C1E16 !important; 
    text-decoration: none !important; 
    padding: 8px 12px !important; 
    background: transparent !important; 
    border: none !important; 
    box-shadow: none !important; 
    transition: color 0.3s ease, transform 0.3s ease !important; 
    margin: 0 !important; 
}

.btn-login {
    background-color: #f39c12 !important;
    color: #ffffff !important;
    border-radius: 20px !important;
}

.nav-links a:hover, .nav-links a[href="track_booking.php"]:hover, .btn-consult:hover { 
    color: #d35400 !important; 
    transform: translateY(-2px) !important; 
}
.btn-login:hover {
    background-color: #d35400 !important;
    transform: translateY(-2px) !important; 
}

.dropdown-content { 
    top: 115% !important; 
    border: 1px solid #eaeaea !important; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important; 
    background-color: #ffffff !important; 
}
.dropdown-content li a { 
    color: #2C1E16 !important; 
    font-weight: 500 !important; 
    transform: none !important; 
    padding: 10px 15px !important; 
    font-size: 0.9rem !important; 
}
.dropdown-content li a:hover { 
    background-color: #fff9f0 !important; 
    color: #d35400 !important; 
    transform: translateX(5px) !important; 
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES (SYMMETRICAL & CENTERED)
   ========================================= */
@media screen and (max-width: 768px) {
    .main-header { position: relative !important; padding: 10px 15px !important; }
    .navbar { width: 100% !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; }
    .logo { text-align: center !important; margin-bottom: 15px !important; width: 100% !important; }
    .nav-links { flex-direction: column !important; width: 100% !important; margin: 0 !important; padding: 0 !important; gap: 12px !important; }
    .nav-links li { width: 100% !important; text-align: center !important; }
    .nav-links a, .btn-consult, .btn-login { width: 100% !important; display: flex !important; justify-content: center !important; align-items: center !important; padding: 12px !important; font-size: 1.05rem !important; box-sizing: border-box !important; box-shadow: 0 4px 0 rgba(0,0,0,0.1) !important; margin: 0 !important; border-radius: 5px !important; }
    .dropdown { width: 100% !important; display: block !important; }
    .dropdown-content { position: relative !important; width: 100% !important; min-width: 100% !important; box-sizing: border-box !important; text-align: center !important; box-shadow: none !important; border: 1px solid rgba(196, 155, 102, 0.4) !important; margin-top: 5px !important; top: 0 !important; }
    .dropdown-content li a { justify-content: center !important; background-color: #F9F1E6 !important; }
}