*{margin: 0;  padding: 0;text-decoration: none;box-sizing: border-box;list-style: none;} body,html{overflow-x: hidden; overflow-y: scroll; font-family: candara; background: white;}

:root {
      --ink: #0d0d0d;
      --paper: #f5f2eb;
      --cream: #faf8f3;
      --accent: #c8102e;
      --accent-dim: #a00c24;
      --gold: #b8922a;
      --gold-light: #e8c96a;
      --rule: #d4cfc4;
      --muted: #6b6560;
      --tag-bg: #0d0d0d;
      --tag-text: #f5f2eb;
      --section-bg: #f0ece2;
      --white: #ffffff;
      --border-radius: 2px;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'DM Mono', monospace;
      --accent: #c9a14a;
    }


nav{
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgb(0, 29, 158); 
  z-index: 9999; 
  box-sizing: border-box;
}


.brand-name{
  display: flex;
  gap: 0;
  top: 10px;
  color: white;
  position: absolute; 
  white-space: nowrap;
  margin-right: auto;
}

.brand-name svg{ font-size: 2rem; flex-shrink: 0;  margin-right: -15px;}



.mid-brand-name{
  font-family: 'Times New Roman';
  font-style: italic;
  font-weight: 600;
  color: gold;
  font-size: 3rem;
  line-height: 1;
  margin-top: 4px; 
}


.last-brand-name{
  font-family: monospace;
  font-weight:1000;
  font-size: 3rem;
  align-items: center;
  color: white; 
  margin-left: -2px;
}


nav ul{
  float: right;
  margin-right: 25px;  
}

nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 15px;
 
}

nav ul li a{
  position: relative;
  color: white;
  font-size: 15px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: bolder;
}

nav ul li a:hover{
  color: yellow;
}

nav ul li a::before{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s linear;
}


nav ul li a:hover::before{
  transform: scaleX(1);
  transform-origin: left;
}

label #btn,
label #cancel{
  color: rgb(255, 255, 255);
  font-size: 30px;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check{
  display: none;
}

.progress-container{
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 2px;
  background:rgba(0,0,0,0.08);
  z-index: 1;
 
}

.progress-bar{
  height: 100%;
  width: 0%;
  background:red;
  transition:width 0.1s ease;
   box-shadow:0 0 10px rgba(0,87,255,0.5);

}


@media (max-width: 1024px) {
  
  nav .brand-name{
   left: unset;
    top: 15px;
     
  }

  nav ul{
    float: right;
    margin-right: 10px;
  }

  nav ul li {
    margin: 0 8px;
  }

  nav ul li a{
      font-size: 10px;
  }
  
}

@media  (max-width: 680px) {
  label #btn{
      display: block;
  }

  .topbar-men ul{
   position: fixed ;
    width: 100%;
    height: 100vh;
    background: rgb(0, 29, 158);
    top: 80px;
    left: -100%;
    text-align: left;
    transition: all .5s;
    z-index: 3;
  }

  nav ul li{
      
      display: block;
      margin: 50px 50px 50px;
      line-height: 30px;
  }

  nav ul li a{
      font-size: 18px;

  }

  #check:checked ~ ul{
      left: 0;
  }

  #check:checked ~  label #btn{
      display: none;
  }

  #check:checked ~ label #cancel{
      display: block;
      
  }
  

}




/* DARK MODE BUTTON!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* ── Dark mode overrides ── */
    body.dark-mode {
      background-color: #121212;
      color: lightgray;
    }
    
    body.dark-mode nav ul li a {
      color:grey;
    }

    body.dark-mode .mid-brand-name{
      color: gold;
    }
    body.dark-mode .webpage-header a {
      color: #b0aeff;
    }
    body.dark-mode .google-btn{background-color: #111110;}  body.dark-mode .google-btn__icon{background-color: #111110;}

    body.dark-mode .google-btn__text{color: grey;}


    body.dark-mode h1{
      color: grey;
    }
    body.dark-mode h2{
      color: green;
    }

    body.dark-mode p{
      color:lightgrey;
    }

    body.dark-mode footer {
      background-color: #111110;
      color: #c8c6be;
    }
    body.dark-mode footer a {
      color: #b0aeff;
    }
    body.dark-mode .article-body-for-web {
      background-color: #1c1c1a;
    }

    body.dark-mode .callout{
      background-color: #0d0d0d;
    }

    body.dark-mode strong{
      color: grey;
    }

    body.dark-mode .section-block  ol li{
      color: lightgrey;
    } 
    body.dark-mode .cat-card{
      background-color: transparent;
      
    }

    body.dark-mode .cat-desc{
      color: lightgray;
    }

    body.dark-mode .sev-table{
      color: lightgrey;
    }

    body.dark-mode .sev-table tbody td{
      background-color: black;
    }

    body.dark-mode .sidebar-card{
      background-color: #111110;
    }

    body.dark-mode .contact-val{
      color: grey;
    }

    body.dark-mode .sidebar-card-body ul li{
      color: lightcyan;
    }

    body.dark-mode .sidebar-card strong{
      color: grey;
    }

    body.dark-mode .policy-card{
      background-color: #121212;
    }









    
    


    /* ── Dark mode toggle button ── */
    .dark-toggle-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
     
    }
    .dark-toggle-label {
      font-size: 15px;
      color: inherit;
      opacity: 0.6;
      transition: opacity 0.3s;
      white-space: nowrap;
      color: white;
      font-weight: bold;
      
      margin: 5px 10px;
    }
    .dark-toggle-label.active {
      opacity: 1;
      font-weight: bold;
    }
    .dark-toggle-track {
      position: relative;
      width: 48px;
      height: 26px;
      border-radius: 100px;
      background: #d0cfc6;
      border: none;
      cursor: pointer;
      padding: 0;
      outline: none;
      transition: background 0.35s;
      flex-shrink: 0;
    }
    .dark-toggle-track:focus-visible {
      box-shadow: 0 0 0 3px rgba(83,74,183,0.4);
    }
    body.dark-mode .dark-toggle-track {
      background: #534AB7;
    }
    .dark-toggle-thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }
    body.dark-mode .dark-toggle-thumb {
      transform: translateX(22px);
    }
    .toggle-icon-sun,
    .toggle-icon-moon {
      position: absolute;
      transition: opacity 0.2s, transform 0.2s;
      color: #888;
      line-height: 1;
    }
    .toggle-icon-sun  { opacity: 1;  transform: scale(1);   }
    .toggle-icon-moon { opacity: 0;  transform: scale(0.6); }
    body.dark-mode .toggle-icon-sun  { opacity: 0;  transform: scale(0.6); }
    body.dark-mode .toggle-icon-moon { opacity: 1;  transform: scale(1); color: #7F77DD; 
  }

 

  /* START HERE !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1 */

  .hero {
      background: var(--ink);
      padding: 60px 5vw 54px;
      position: relative;
      overflow: hidden;
      margin-top:50px ;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 80px
      );
    }
    .hero-inner {
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 22px;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
      opacity: 0.6;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 900;
      color: white;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      max-width: 540px;
      margin: 0 auto 32px;
    }
    .hero-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.08em;
    }
    .hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }
 
    /* ── LAYOUT ── */
    .page-body {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 5vw;
    }
    .two-col {
      display: grid;
      grid-template-columns: 1fr 310px;
      gap: 48px;
      align-items: start;
      padding: 56px 0 80px;
    }
 
    /* ── MAIN CONTENT ── */
    .main-content {}
 
    /* Section divider */
    .section-block {
      margin-bottom: 52px;
      animation: fadeUp 0.5s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .section-block:nth-child(1) { animation-delay: 0.05s; }
    .section-block:nth-child(2) { animation-delay: 0.12s; }
    .section-block:nth-child(3) { animation-delay: 0.19s; }
    .section-block:nth-child(4) { animation-delay: 0.26s; }
    .section-block:nth-child(5) { animation-delay: 0.33s; }
    .section-block:nth-child(6) { animation-delay: 0.40s; }
    .section-block:nth-child(7) { animation-delay: 0.47s; }
 
    .section-num {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--rule);
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 48px;
      height: 2px;
      background: #c9a14a;;
    }
    .section-body {
      font-size: 0.975rem;
      color: #2a2825;
      line-height: 1.85;
    }
    .section-body p + p { margin-top: 14px; }
    .section-body strong { font-weight: 600; color: var(--ink); }
    .section-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    .section-body a:hover { color: var(--accent-dim); }
 
    /* Callout box */
    .callout {
      background: var(--section-bg);
      border-left: 4px solid var(--gold);
      border-radius: 0 4px 4px 0;
      padding: 18px 22px;
      margin: 22px 0;
    }
    .callout p { font-size: 0.93rem; color: var(--muted); }
    .callout strong { color: var(--ink); font-weight: 600; }
 
    /* Process steps */
    .steps-list {
      list-style: none;
      counter-reset: steps;
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .steps-list li {
      counter-increment: steps;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.95rem;
      color: #2a2825;
      line-height: 1.7;
    }
    .steps-list li::before {
      content: counter(steps, decimal-leading-zero);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 500;
      color: white;
      background: var(--ink);
      min-width: 30px;
      height: 30px;
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
 
    /* Tag categories */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 16px;
    }
    .cat-card {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 4px;
      padding: 14px 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .cat-icon {
      width: 34px;
      height: 34px;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
    }
    .cat-icon.tech   { background: #e8f0fe; }
    .cat-icon.fin    { background: #e8f5e9; }
    .cat-icon.crypto { background: #fff8e1; }
    .cat-icon.naija  { background: #fce4ec; }
    .cat-label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .cat-desc {
      font-size: 0.82rem;
      color: #3a3835;
      margin-top: 3px;
      line-height: 1.5;
    }
 
    /* Severity table */
    .sev-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 18px;
      font-size: 0.88rem;
    }
    .sev-table th {
      background: var(--ink);
      color: white;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 10px 14px;
      text-align: left;
    }
    .sev-table td {
      padding: 11px 14px;
      border-bottom: 1px solid var(--rule);
      vertical-align: top;
      line-height: 1.5;
    }
    .sev-table tr:nth-child(even) td { background: var(--section-bg); }
    .badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 2px;
    }
    .badge-critical { background: #fce4ec; color: #b71c1c; }
    .badge-major    { background: #fff3e0; color: #bf360c; }
    .badge-minor    { background: #e8f5e9; color: #1b5e20; }
 
    /* ── SIDEBAR ── */
    .sidebar {}
    .sidebar-card {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 24px;
    }
    .sidebar-card-head {
      background: var(--ink);
      padding: 14px 20px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
    }
    .sidebar-card-body { padding: 18px 20px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--rule);
    }
    .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-icon {
      width: 32px;
      height: 32px;
      background: var(--section-bg);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
    }
    .contact-label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .contact-val {
      font-size: 0.86rem;
      font-weight: 500;
      color: var(--ink);
      margin-top: 2px;
      word-break: break-word;
    }
    .contact-val a { color: var(--accent); text-decoration: none; }
    .contact-val a:hover { text-decoration: underline; }
 
    .pledge-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .pledge-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.86rem;
      color: #2a2825;
      line-height: 1.5;
    }
    .pledge-list li::before {
      content: '✓';
      font-size: 0.72rem;
      color: white;
      background: var(--accent);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
 
    .timeline-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      padding-left: 22px;
    }
    .timeline-list::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 8px;
      bottom: 8px;
      width: 2px;
      background: var(--rule);
    }
    .timeline-list li {
      position: relative;
      padding: 0 0 14px 18px;
      font-size: 0.84rem;
      color: #2a2825;
      line-height: 1.5;
    }
    .timeline-list li::before {
      content: '';
      position: absolute;
      left: -16px;
      top: 7px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      border: 2px solid var(--paper);
    }
    .timeline-list li strong {
      display: block;
      font-weight: 600;
      font-size: 0.82rem;
      color: var(--ink);
      margin-bottom: 1px;
    }
    .timeline-list li:last-child { padding-bottom: 0; }

    .contacts-section {
      background: #0a2540;
      color: white;
      padding: 3.5rem;
      border-radius: 16px;
      text-align: center;
      margin: 4rem 0;
    }
        
    .contacts-section h2 {color: white;}

    .btn {
      display: inline-block;
      background: var(--accent);
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1.5rem;
      transition: all 0.3s;
    }
        
    .btn:hover {
      background: #d4b16a;
      transform: translateY(-3px);
    }

    .section {
            margin-bottom: 4rem;
        }
        
        .section .section-title {
            font-size: 2.1rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 12px;
            
        }
        
        .section .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background:  #c9a14a;;
            border-radius: 2px;
        }


        .intro {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 3rem;
        }
        
        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .policy-card {
            background: white;
            border-radius: 12px;
            padding: 2.2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--accent);
            transition: transform 0.3s;
        }
        
        .policy-card:hover {
            transform: translateY(-8px);
        }
        
        .policy-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        
        ul {
            padding-left: 1.4rem;
        }
        
        li {
            margin-bottom: 0.8rem;
        }
        
        .highlight-box {
            background: #f8f4eb;
            border-left: 6px solid var(--accent);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 4px;
        }

  


/* NEW CTA BOX!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */




  .section-for-footer{
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #121212;
    bottom: 0;
    min-height: 100vh; 
   
  }

  .section-for-footer p{
    color: grey;
  }

  .footer-brand-name{
    display: flex;
    gap: 0;
    white-space: nowrap;
    margin-right: auto; 
  }

  .footer-brand-name .mid-brand-name{
    font-family: 'Times New Roman';
    font-style: italic;
    font-weight: 600;
    color: gold;
    font-size: 3rem;
    line-height: 1;
    margin-top: 10px; 
  }

  .footer-brand-name svg{ font-size: 2rem; flex-shrink: 0;  margin-right: -12px;}

  .first-content-footer{
    width: 40%;
    margin: 20px;
  }


 .second-content-footer{
  width: 60%;
  display: flex;
  flex-direction: row;
  margin-top: 30px;
 } 

 .second-content-sub-one{
    padding-right:200px;

 }

 .second-content-sub-one ul li a{
  line-height: 40px;
  color: grey;
  margin: 0;
  transition: all 0.3s ease;
  white-space:nowrap;
  
 }



 .second-content-sub-one i{
  margin-right: 5px;
 }

 .second-content-sub-one ul li a:hover{
  color:rgb(0, 140, 255); transform: translateY(-3px);
 }


 
 .footer-more{
  margin: 0;
  color: white;
  flex-direction: column;
  font-weight: bold;
 }

 .footer-more::after{
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, lightblue, rgb(0, 140, 255), purple);
  margin-top: 5px;

 }
 .before-section{
  content: '';
  position: absolute;
  width: 98%;
 
  height: 2px;
  background: linear-gradient(to right, #22d3ee, #a855f7);
 }


 .last-footer-section{
  display: flex;
  flex-direction: row;
  background-color: #121212;
 
 }

 .footer-socials{
  margin: 20px;
  
 }

 .footer-socials  i {
  margin-right: 30px;
  font-size: 1.3rem;
  color: grey;
  transition: all 0.3s ease;
  
 } .footer-socials i:hover{color: white; transform: translateY(-3px);}



 .rights-reserved{
  display:flex;
  gap: 10px;
  margin: 20px;
  font-size: 1rem;
  justify-content: center;
  margin-left:350px ;
  color: #BAC4C8;
 }

 .rights-reserved a{
  color:#BAC4C8 ;
  text-decoration: underline;
  font-weight: bold;
 }

 

 .footer-links{
  display: flex;
  text-align: center;
  gap: 20px;
  margin: 20px;
  margin-left: auto;
 }

 .footer-links a{
  color: #BAC4C8; transition: all 0.3s ease;
 }

 .footer-links a:hover{color: white; }




 

 


 


@media(max-width:680px){

 
  body.dark-mode nav ul {
    background-color: black;
  }

  .hero { padding: 3rem 1rem 2rem; }
    .page-body { padding: 2rem 1rem 4rem; }
    nav { padding: 0 1rem; }

 

  .footer-line p{
    width: 100%;
    color: rgb(255, 255, 255);
  font-size: 0.7rem;
  font-weight: bolder;
  text-align: center;
  }
  .section-for-footer{ 
    flex-direction: column;
  }

  .first-content-footer{
    width: fit-content;
  }

  .second-content-footer{
    width: 100%;margin:20px; flex-direction: column;
  }
  .second-content-sub-one{margin-bottom: 30px;}

  .last-footer-section{display: flex; flex-direction: column;}

  .footer-socials{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rights-reserved{
   margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px 10px  ;
    gap: 20px;
    white-space: nowrap;
   
  }
  
}

@media(max-width:480px){

  .rights-reserved{
   margin: 2px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: small;
  }

  .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px 10px  ;
    gap: 20px;
    white-space: nowrap;
    font-size: small;
   
  }

}


