/* Mobile CSS for screens below 768px */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

:root {
    --purple-dark: #022a76;
    --purple-main: #0a309b;
    --purple-light: #169bc2;
    --orange: #0034b3;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--white);
    background-color: var(--purple-main);
    padding-top: 60px; /* Space for fixed header */
    overflow-x: hidden;
}

.wrapper {
    background-image: radial-gradient(circle at 50% 50%, var(--purple-light) 0%, var(--purple-main) 80%, var(--purple-dark) 100%);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    color: var(--purple-dark);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 4px solid #007BFF;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    width: 100%;
}

/* Logo */
.logo {
    flex-shrink: 1;
}

.img-logo {
  width: 170px;
  height: 75px;
  display: block;
  transition: width 0.3s ease;
}


/* Hide Desktop-specific elements */
.logo-intro {
    display: none;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hide Dropdown Menus */
.dropdown-container {
    display: none;
}

/* Phone Icon */
.nav-item.phone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item.phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background-color: rgba(2, 42, 118, 0.05);
}

.nav-item.phone svg {
    width: 20px;
    height: 20px;
    stroke: var(--purple-dark);
}

.nav-item.phone span {
    display: none;
}

/* Partner Button */
.nav-item .btn {
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-purple {
    background-color: var(--purple-light);
    color: var(--white);
}

.nav-item .btn svg {
    width: 16px;
    height: 16px;
}

/* General Button Styles */
.btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive Scaling for smaller screens */
@media (max-width: 500px) {
    .img-logo {
            width: 130px;
            height: auto;
        }

    .nav-item .btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .nav-item .btn svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .header .container {
        padding: 0 10px;
    }
}

@media (max-width: 425px) {
      .header .container {
        flex-direction: column;
        gap:10px;
    }
            .hero-content h1 {
            margin-top: 45px;
        }
        
}

/* Hero Section Mobile Styles */
.hero {
    margin-top: 20px;
    padding: 30px 0;
    min-height: auto;
    display: block;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-woman {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.woman-image {
    position: relative;
    margin: 0;
    width: 80%;
    height: auto;
    max-width: 350px;
    margin-left: 0;
}

.hero-content {
    padding-top: 0;
    text-align: left;
    order: 1;
    margin-left: 20px;
}

.hero-content h1 {
    font-size: 70px;
    line-height: 1.2;
    margin-bottom: 15px;
    margin-top: 35px;
}

.hero-subtitle h2 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight {
    font-style: italic;
    font-weight: 800;
    position: relative;
    display: inline-block;
    opacity: 0.8;
}

.hero-subtitle p {
    font-size: 16px;
    max-width: 100%;
}

/* --- Premium Advisory Card Mobile Styles --- */
.advisory-card {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #022a769e 0%, #0a1f447a 100%);
    border-left: 4px solid #d4af37;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    width: 95%;
    box-shadow: 0 5px 15px rgba(2, 42, 118, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.advisory-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0;
}

.advisory-content p {
    color: #cbd5e1;
    font-size: 13px;
    margin: 0;
}

.advisory-tag {
    display: inline-block;
    color: #d4af37;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.advisory-arrow {
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    margin-left: 15px;
}

/* Loan Card Mobile */
.loan-card {
    position: relative;
    width: 47%;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    padding: 20px;
    animation: none;
    background-color: rgba(22, 155, 194, 0.1);
    border-radius: 15px;
    order: 2;
}

.loan-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
    text-align: center;
}

.loan-card p {
    display: none;
}

.loan-types {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.loan-type-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.loan-type svg {
    width: 32px;
    height: 32px;
}

.loan-type span {
    display: none;
}

/* White Segment & Cards Mobile */
.white-segment {
    padding: 40px 0;
    background-color: var(--white);
    color: var(--purple-dark);
}

.segment-title {
    font-size: 26px;
    text-align: center;
}

.segment-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

/* 2 Cards per row layout */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.interactive-card {
    width: 30%;
    flex: none;
    padding: 20px 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.interactive-card .card-image svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.interactive-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.interactive-card p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Filter Styles */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid var(--purple-dark);
    background: var(--white);
    color: var(--purple-dark);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--purple-dark);
    color: var(--white);
}

/* Full Image Cards Grid Mobile */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 10px;
}

.full-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.full-image-card.hidden {
    display: none;
}

.card-image-container {
    height: 140px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    transform: translateZ(0);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 2, 118, 0) 0%, rgba(45,2,118,0.2) 100%);
}

.card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--purple-dark);
}

.card-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    flex: 1;
}

.card-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-light);
    margin-top: auto;
    display: block;
}

/* Grey Segment Mobile */
.grey-segment {
    background-color: rgb(230, 226, 226);
    padding: 40px 0;
    color: var(--purple-dark);
}

.big-interactive-card {
    background: var(--white);
    border-radius: 15px;
    height: 400px;
    background: url(insurance.jpg) center / cover no-repeat;
    width: 85%;
}

/* Split Layout Section Mobile */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 20px 0;
}

.segment-title-l {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.segment-subtitle-l {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.button-group .btn {
    width: 50%;
    justify-content: center;
}

/* Footer Mobile Styles */
.footer-container {
    background-color: #011f5a;
    color: white;
}

.footer-banner {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
}

.footer-banner-text h2 {
    font-size: 28px;
}

.footer-banner-cta {
    background-color: #169bc2;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    display: inline-block;
}

@media (max-width: 768px) {

    .hero-section .btn {
        width: 50% !important;
    }
  /* Hide all other footer columns */
  .footer-column {
    display: none !important;
  }

  /* Show only simplified mobile links */
  .mobile-simple-links {
    display: block !important;
    padding: 20px;
  }

  .mobile-simple-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-simple-links ul li {
    margin-bottom: 12px;
  }

  .mobile-simple-links ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
  }

  .mobile-simple-links ul li a:hover {
    text-decoration: underline;
  }

  /* Hide social icons for mobile */
  .footer-social,
  .social-icons-mobile,
  .footer-social-icons,
  .social-icon,
  .social-icon-mobile {
    display: none !important;
  }

  /* Footer bottom and disclaimer styling */
  .footer-bottom {
    padding: 20px;
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-company-info p,
  .footer-company-info p1,
  .footer-copyright p,
  .footer-copyright p1 {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
  }

  .footer-disclaimer {
    font-size: 11px;
    margin-top: 10px;
  }
}

/* Partner Popup Mobile Styles */
.partner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 31, 44, 0.92);
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.partner-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.partner-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: white;
    position: relative;
}

.partner-section {
    padding: 25px 20px;
    flex: 1;
}

.partner-section:first-child {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--purple-dark);
}

.partner-section:last-child {
    background: linear-gradient(135deg, #022a76 0%, #0a309b 100%);
    color: white;
}

.partner-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.partner-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
}

.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.partner-benefits li {
    padding: 5px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-decoration: none;
}

.scenario-btn {
    background: linear-gradient(135deg, #169bc2 0%, #0a309b 100%);
    color: white;
}

.accredited-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #022a76;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close-partner-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.partner-disclaimer {
    margin-top: 15px;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

@media (max-width: 600px) {
    .loan-card {
        width: 80%;
    }
    .loan-types {
        gap: 5px;
    }
    .hero-content h1 {
        font-size: 45px;
    }
    .hero-subtitle h2 {
        font-size: 20px;
    }
    .hero-section .btn {
        width: 90% !important;
    }
}

@media (max-width: 425px) {
      .header .container {
        flex-direction: column;
        gap:10px;
    }
    
    .white-segment {
        padding: 25px 0px;
    }

     .segment-title {
        font-size: 17px;
    }

    .segment-subtitle {
        font-size: 12px;
    }

    .cards-container {
        gap: 5px;
    }

    .interactive-card {
        padding: 10px 5px;
        margin-bottom: 5px;
    }

    .interactive-card .card-image svg {
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
    }

    .interactive-card h3 {
        font-size: 12px;
    }

    .interactive-card p {
        font-size: 10px;
    }

    

    
}

/* Popup Styles */
.refer-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.refer-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.refer-popup {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--purple-dark);
}

.refer-popup h3, .refer-popup p {
  color: var(--purple-dark);
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Input Group */
.refer-input-group {
  display: flex;
  margin: 15px 0;
}

#referralLink {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  width: 100%;
}

#copyLinkBtn {
  padding: 10px 15px;
  background-color: #0a309b;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s;
}

#copyLinkBtn:hover {
  background-color: #0b2d8a;
}

/* Divider */
.or-divider {
  text-align: center;
  margin: 20px 0;
  color: #666;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #ddd;
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}

/* Social Share Buttons */
.social-share {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.share-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.3s;
}

.share-btn:hover {
  filter: brightness(0.9);
}

.share-btn i {
  font-size: 18px;
}

.whatsapp { background-color: #0ba042; }
.facebook { background-color: #1877F2; }
.twitter { background-color: #1DA1F2; }
.telegram { background-color: #0088cc; }

/* Contact Popup Styles */
.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-popup {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--purple-dark);
}

.contact-popup h3 {
  color: var(--purple-dark);
}

.close-contact-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method i {
  font-size: 24px;
  color: #0a309b;
}

.contact-info {
  flex: 1;
  padding-left: 15px;
}

.contact-info span {
  display: block;
  font-size: 12px;
  color: #666;
}

.contact-number, .contact-email {
  display: block;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  margin-top: 3px;
  font-size: 14px;
  word-break: break-all;
}

.call-btn, .email-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.call-btn {
  background-color: #189746; 
}

.email-btn {
  background-color: #0a309b; 
}

.call-btn:hover, .email-btn:hover {
  opacity: 0.9;
}

/* --- Advisory Page Mobile Styles --- */
.advisory-page {
  background-color: #ffffff; /* Ensure white background for readability */
  color: #1f2937;
}

.advisory-hero {
  background: linear-gradient(rgba(2, 42, 118, 0.95), rgba(2, 42, 118, 0.85)), url('images/mining.png');
  background-size: cover;
  background-position: center;
  padding: 190px 20px 170px;
  text-align: center;
  color: white;
  margin-top: 0;
}

.gold-tag {
  color: #d4af37;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  display: block;
  margin-bottom: 15px;
}

.advisory-hero h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 800;
}

.advisory-hero p {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 30px;
  font-weight: 300;
}

.advisory-section {
  padding: 60px 20px;
}

.bg-light {
  background-color: #f8f9fa;
  color: #022a76;
}

.bg-dark {
  background-color: #022a76;
  color: white;
}

.services-grid, .why-grid, .engagement-options {
  display: grid;
  grid-template-columns: 1fr; /* Stack on mobile */
  gap: 20px;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-top: 4px solid #d4af37;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
  color: #022a76;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #4b5563;
}

.why-item {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.02);
  border-radius: 8px;
}

.why-item h3 {
  font-size: 16px;
  color: #022a76;
  margin-top: 10px;
}

.engagement-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  margin-bottom: 20px;
}

.engagement-card.featured {
  background: rgba(255,255,255,0.1);
  border-color: #d4af37;
  transform: none; /* Remove scale on mobile */
  margin: 20px 0;
}

.engagement-card h3 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 10px;
}

.engagement-card p {
  color: #cbd5e1;
  font-size: 14px;
}

.engagement-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  text-align: left;
}

.engagement-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #e2e8f0;
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #d4af37;
  color: #022a76;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}

.btn-gold, .btn-outline-gold {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

.btn-gold {
  background-color: #d4af37;
  color: #022a76;
}

.btn-outline-gold {
  border: 2px solid #d4af37;
  color: #d4af37;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #022a76;
}

.section-header.light-text h2 {
  color: white;
}

.lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.advisory-page .section-header p {
  margin-bottom: 20px;
}

/* Fix for header on advisory page */
.advisory-page .header {
  position: fixed;
}

.advisory-page .nav-menu {
  display: flex;
}

.advisory-page .nav-item.phone {
  display: flex;
}

.advisory-page .footer-info {
  align-items: center;
  text-align: center;
}