:root {
    --brand-dark-blue: #000066;
    --brand-blue: #0066ff;
    --brand-light-blue: #e6f0ff;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --premium-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --premium-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

    /* Fluid Typography - More aggressive for large screens */
    --fs-h1: clamp(2.5rem, 8vw, 7rem);
    --fs-h2: clamp(2rem, 5vw, 4rem);
    --fs-h3: clamp(1.5rem, 3vw, 2.5rem);
    --fs-p: clamp(1rem, 1.5vw, 1.25rem);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fcfcfc;
    background-image: radial-gradient(#cbd5e1 0.5px, transparent 0.5px);
    background-size: 32px 32px;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Header & Utility Bar */
.utility-bar {
    background-color: var(--brand-dark-blue);
    font-size: 0.72rem;
    padding: 10px 0;
    border-bottom: none;
    color: var(--white);
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.utility-item i {
    font-size: 0.85rem;
    color: var(--white);
}

.follow-us {
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.utility-divider {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.login-link {
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: var(--brand-blue) !important;
}

.main-header {
    padding: 15px 0;
}

.form-search {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    padding: 0;
}

.search-input {
    border-radius: 50px;
    padding: 14px 70px 14px 30px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
    border-color: var(--brand-blue);
    outline: none;
}

.search-btn {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-blue);
    color: white;
    border: none;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
}

.search-btn:hover {
    background-color: var(--brand-dark-blue);
    transform: translateY(-50%) scale(1.05);
}

.header-actions .btn-action {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #f1f5f9;
    background-color: white;
    padding: 10px 22px;
    border-radius: 50px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    box-shadow: var(--premium-shadow);
}

.header-actions .btn-action:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: var(--premium-shadow-lg);
}

.header-actions .btn-action i {
    color: var(--brand-blue);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

/* Navigation */
.main-nav {
    background-color: var(--brand-dark-blue);
    padding: 0;
    border-bottom: 4px solid var(--brand-blue);
}

.nav-link {
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 18px 20px !important;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--brand-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--brand-blue) !important;
}

/* Mega Menu Styles */
.mega-menu-trigger {
    position: relative;
}

.main-nav .container-fluid {
    position: relative;
}

.sh-mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 95vw;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    padding: 30px 40px;
    transform-origin: top center;
}

/* Fix Overflow for first items near screen edge */
.nav-item:nth-child(-n+3) .sh-mega-menu {
    left: 0;
    transform: translateY(10px);
    transform-origin: top left;
}

.mega-menu-trigger:hover .sh-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item:nth-child(-n+3).mega-menu-trigger:hover .sh-mega-menu {
    transform: translateY(0);
}

/* Remove Arrow Indicator for cleaner look as requested */

.mega-row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -20px;
}

.mega-col {
    flex: 0 0 auto;
    width: auto;
    padding: 0 25px;
    border-right: 1px solid #f1f5f9;
}

.mega-col:last-child {
    border-right: none;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 2px;
}

.mega-col ul li a {
    color: #475569;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
    padding: 3px 0;
    white-space: nowrap;
}

.mega-col ul li a:hover {
    color: var(--brand-blue);
    transform: translateX(3px);
    background: transparent;
}

.mega-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-bottom: 4px;
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
}

/* Align Nav items to edges */
.main-nav .container>div>ul:first-child .nav-item:first-child .nav-link {
    padding-left: 0 !important;
}

.secondary-nav .nav-item:last-child .nav-link {
    padding-right: 0 !important;
}

.section-padding {
    padding: 1px 0;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Typography */
h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.secondary-nav .nav-link {
    font-size: 0.8rem;
}

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(135deg, #001a4d 0%, #000181 100%);
    position: relative;
    padding: 0;
    color: white;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

.hero-content h1 {
    font-size: var(--fs-h1);
    font-weight: 900;
    letter-spacing: 5px;
    margin: 0;
    line-height: 1;
}

.hero-content p {
    font-size: clamp(1.2rem, 2.5vw, 2.2rem);
    font-weight: 300;
    margin-top: 20px;
    line-height: 1.2;
}

.hero-visual {
    position: relative;
}

.banner-frame {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 1000px 50px 1000px 1000px;
    padding: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.banner-frame img {
    max-width: 100%;
    transform: scale(1.1);
}

.btn-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s;
}

.btn-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.btn-prev {
    left: -25px;
}

.btn-next {
    right: -25px;
}

.pagination-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: white;
    width: 12px;
    height: 12px;
}

/* Category Section */
.product-categories {
    padding: clamp(40px, 5vw, 80px) 0;
    background-color: white;
    overflow: hidden;
    /* Prevent any horizontal scroll */
}

.product-categories .row {
    flex-wrap: nowrap !important;
    overflow: visible !important;
    width: 100%;
}

.product-categories .col {
    flex: 1 1 0px;
    min-width: 0;
}

.category-card {
    text-align: center;
    padding: 5px;
    border: none;
    transition: transform 0.3s;
    width: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img-wrapper {
    height: clamp(50px, 8vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.category-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.category-link {
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
    font-size: clamp(0.7rem, 1vw, 0.95rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.category-link i {
    color: var(--brand-blue);
    font-size: 0.8em;
}

/* Mobile Specific Scaling for 8 items */
@media (max-width: 576px) {
    .category-img-wrapper {
        height: 40px;
        margin-bottom: 8px;
    }

    .category-link {
        font-size: 0.6rem;
        gap: 2px;
    }

    .category-card {
        padding: 2px;
    }
}


.category-link:hover {
    color: var(--brand-blue);
}


/* About Section */
.about-section {
    background-color: #fbfbfb;
    background-image: radial-gradient(#d1d5db 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    padding: 40px 0;
}

.about-card {
    background: linear-gradient(180deg, #0b1a38 0%, #001a4d 100%);
    border-radius: 40px 10px 10px 10px;
    padding: 0;
    overflow: visible;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.about-card-img-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: white;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: 2;
}

.about-card-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-card-footer {
    padding: 40px;
    background: linear-gradient(90deg, #061229 0%, #004294 100%);
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 1;
}

.about-card-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    max-width: 350px;
}

.about-subtitle {
    display: block;
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.about-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.about-text-wrapper {
    border-left: 4px solid var(--brand-blue);
    color: #555;
    line-height: 1.8;
    font-size: var(--fs-p);
}

.about-highlights {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.highlight-item {
    text-align: center;
    padding: 20px 10px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.highlight-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--brand-blue);
}

.highlight-item span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.blue-highlight {
    color: var(--brand-dark-blue);
    font-weight: 700;
}

.about-decor-dots {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#d1d5db 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: white;
}

.section-header .subtitle {
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.section-header .main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.decor-lines span {
    height: 3px;
    border-radius: 2px;
}

.line-blue {
    width: 15px;
    background-color: var(--brand-dark-blue);
}

.line-purple {
    width: 40px;
    background-color: #d8b4fe;
}

.hover-card {
    background-color: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1;
}

.hover-card::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: -1;
    opacity: 0;
}

.hover-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -2;
}

.hover-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.25);
    border-color: transparent;
}

.hover-card:hover::before {
    opacity: 1;
    top: -30px;
    left: -30px;
}

.hover-card:hover::after {
    opacity: 1;
}

.hover-card:hover .card-title,
.hover-card:hover .card-text {
    color: white;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111827;
    transition: color 0.4s;
    line-height: 1.25;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
    transition: color 0.4s;
}

.card-icon-outer {
    width: 110px;
    height: 110px;
    background-color: #f3f4f6;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    border: 8px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hover-card:hover .card-icon-outer {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.card-icon-inner {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s;
}

.hover-card:hover .card-icon-inner {
    background-color: #1e3a8a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-icon-inner i {
    font-size: 1.8rem;
    color: var(--brand-blue);
    transition: color 0.5s;
}

.hover-card:hover .card-icon-inner i {
    color: white;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--brand-dark-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 1000;
    display: none;
    /* Hidden by default, script shows it */
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--brand-blue);
}

/* Footer Section */
.site-footer {
    background-color: #000033;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 51, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 51, 153, 0.15) 0%, transparent 50%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 40px, rgba(255, 255, 255, 0.02) 41px, rgba(255, 255, 255, 0.02) 42px, transparent 43px),
        repeating-radial-gradient(circle at 10% 10%, transparent 0, transparent 60px, rgba(255, 255, 255, 0.01) 61px, rgba(255, 255, 255, 0.01) 62px, transparent 63px);
    color: white;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    max-width: 120px;
    background: white;
    padding: 10px;
    border-radius: 4px;
}

.footer-about-text {
    font-size: var(--fs-p);
    line-height: 1.6;
    color: #e0e0e0;
}

.btn-footer-buy {
    background: linear-gradient(90deg, #001a4d 0%, #0066ff 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-footer-buy:hover {
    transform: translateY(-3px);
    color: white;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.footer-underline {
    width: 40px;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #e0e0e0;
}

.footer-links a:hover {
    color: var(--brand-blue);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
    margin: 15px 0;
}

.footer-contact-info li {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.footer-contact-info i {
    color: white;
    font-size: 1.1rem;
}

.footer-bottom {
    background-color: #000022;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: white;
    font-weight: 600;
}

@media (max-width: 991px) {
    .site-footer {
        padding-top: 60px;
        text-align: center;
    }

    .footer-heading {
        margin-top: 20px;
    }

    .footer-underline {
        margin: 0 auto;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact-info li {
        justify-content: center;
    }
}

/* Ultra Wide Support - Aggressive scaling for legibility */
@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1550px;
    }

    html {
        font-size: 115%;
        /* Scale up for wide desktops */
    }

    .mega-title {
        font-size: 0.9rem;
    }

    .mega-col ul li a {
        font-size: 1.1rem;
    }
}

@media (min-width: 2000px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1800px;
    }

    html {
        font-size: 135%;
        /* Significant scale up for 4K/Massive displays */
    }

    .mega-title {
        font-size: 1rem;
    }

    .mega-col ul li a {
        font-size: 1.2rem;
    }
}


/* Responsive Overrides */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .category-card {
        min-width: 100px;
    }
}

/* Locations & Branch Info */
.vs-info-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
}

.vs-info-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--premium-shadow-lg);
    border-color: var(--brand-blue);
}

.vs-info-box_title {
    font-size: 1.5rem;
    color: var(--brand-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vs-info-box_content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-info-box_content li {
    margin-bottom: 1.25rem;
}

.vs-info-box_content li h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-blue);
    font-weight: 700;
}

.vs-info-box_content li p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.vs-info-box_content li a {
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.vs-info-box_content li a:hover {
    color: var(--brand-dark-blue);
}