 /* General Reset */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arcane-Hand, sans-serif;
    background: #5b6e80;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styling */

.nav-logo {            /* Make sure the image resizes properly */
    height: 55px;                /* Maintain the image's aspect ratio */
    border: none;
    width: auto;
}
nav {
    width: 100%;
    background-color: #ffffff;
    padding:  5px 0;
    font-family: Arial, sans-serif;
    border-bottom: 3px solid #000000;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px auto;
    padding: 0 10px 0 0px;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s;
    background-color: #ffffff;
    border: 1px solid #000000;
}

nav ul li a:hover {
    border-color: #fb3534;
}

/* Right side links in navbar */
.nav-right {
    margin-left: auto;
}

/* Main Content Container */
.container {
    max-width: 450px;  /* Smaller width for the form containers */
    margin: 15px auto;  /* Reduced top and bottom margin */
    padding: 15px;  /* Reduced padding for the container */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
   
}

/* Form Styling */
.form-container {
    width:70%;
    margin: 15px 20px 20px 0px;  /* Reduced top and bottom margin, auto for right margin */
    padding: 7px 7px 20px 7px;  /* Reduced padding for the container */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.74);  /* Increased shadow intensity */
    border: 3px solid #000000;
}



form {
    display: flex;  /* Use flexbox for the form layout */
    flex-direction: column;  /* Stack form elements vertically */
    gap: 0px;  /* Reduced space between sections */
    background-color: #fff;
    padding: 10px; /* Padding for the form */
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
}


/* Wrapper for left and right sections */
.form-sections {
    display: flex;  /* Use flexbox to place left and right sections side by side */
    justify-content: space-between;  /* Space out the left and right sections */
    gap: 10px;  /* Add space between the left and right sides */
}

/* Left and Right form sections */
.form-left, .form-right {
    width: 48%;  /* Each section takes up 48% of the width */
    display: flex;
    flex-direction: column;  /* Stack the form elements vertically */
}

form label {
    color: #000000;
    font-size: 18px;
    display: block;
    margin: 2px 0 2px; /* Reduced margin for label */
    font-weight: bold; /* Make the text bold for more emphasis */
    letter-spacing: 0.6px;
}

/* Input Fields */

.search-container {
    position: relative;
  }

  .search-container i {
    position: absolute;
    right: 1px;
    bottom: 11px;
    height: fit-content;
    margin-top: 4px;
    color: #000000; /* Icon color */
    pointer-events: none; /* Prevent the icon from interfering with typing */
    border-left: 1px solid #000000;
    padding: 8px;
    background-color: #e2e2e2;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  .search-container input[type="text"] {
    width: 100%;
    padding: 8px;  /* Smaller padding for inputs */
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #000000;
    font-size: 14px;  /* Smaller font size for inputs */
    transition: border-color 0.3s ease;
    box-sizing: border-box;
 }

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="number"],
form select,
form textarea {
    width: 100%;
    padding: 8px;  /* Smaller padding for inputs */
    margin-top: 5px;
    margin-bottom: 10px; /* Reduced margin between fields */
    border-radius: 4px;
    border: 1px solid #000000;
    font-size: 14px;  /* Smaller font size for inputs */
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: border-color 0.1s ease;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form select:focus,
form textarea:focus {
    border-color: #000000;
    outline: none;
    box-shadow: none;
}

/* Submit Button Styling */
form input[type="submit"] {
    padding: 10px 20px 10px 20px;  /* Smaller padding for the button */
    background-color: #222222;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 14px;  /* Smaller font size for button */
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 4px;  /* Reduced space above button */
    justify-content: flex-end; 
    border: none;
}

form input[type="submit"]:hover {
    border-color: #333;
}

.form-submit {
    display: flex;
    justify-content: center;  /* Center the submit button */
    margin-top: 10px;  /* Add some space above the submit button */
}

/* Info Block Styling */
.info-block {
    background-color: #fff;
    padding: 15px; /* Smaller padding for info blocks */
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    text-align: left;
}

.info-block:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

/* Info Block Content */
.info-block p {
    margin-bottom: 8px; /* Reduced space between paragraphs */
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* Button inside Info Block */
.view-info-btn {
    display: inline-block;
    padding: 8px 15px;  /* Smaller button size */
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 12px;
    transition: background-color 0.3s;
}

.view-info-btn:hover {
    background-color: red;
}

/* No submissions text */
.no-submissions {
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Additional Form Elements for specific pages */
h2 {
    font-size: 20px;  /* Smaller font size for heading */
    text-align: center;
}

h3 {
    width: 83%;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;  /* Font size adjusted for better readability */
    font-weight: bold; /* Bold for emphasis */
    text-align: center; /* Center-align the heading */
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 1px; /* Space below the heading */
    color: #ffffff; /* Eye-catching color */
    text-transform: uppercase; /* Make the text uppercase */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.918);
    letter-spacing: 1px; /* Slight spacing between letters for visual appeal */
    border-radius: 4px; /* Optional: rounded corners */
}

h4 {
    font-size: 20px;  /* Smaller font size for heading */
    text-align: center;
    color: #ffffff;
    border-radius: 5px;
    background-color: #29292b;
    box-shadow: 0px 3px 6px rgba(29, 29, 29, 0.5), -3px -3px 6px rgba(50, 50, 50, 0.2); /* 3D effect */
    padding: 5px ;
    margin-bottom: 1px;
    width: 100%;
}

h1 {
    text-align: center;
    color: #ffffff;
    text-decoration: underline;
}

p2 {
    color: #ffffff;
    font-size: 25px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.918);
}
/* LeadForm */ 

/* Content Wrapper */
.home-part {
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.74);
    overflow: hidden;
    display: flex; /* Align form and image side by side */
    align-items: flex-end;
    justify-content: space-between;
    gap: 0px;
    width: 85%;;
    margin: 1px auto 0px auto;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

/* Image Styling */
.img-home {
   height: 100%;
}

.nav-logo-link {
    box-shadow: none;
    border: none;
    display: flex;               /* Use flexbox for the link container */
    justify-content: center;     /* Center horizontally */
    align-items: center;         /* Center vertically */
    height: 50px;;                 /* Ensure the link container fills its parent */
    width: 180px;                /* Set a fixed width for the container */
}

.message {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
}
.success {
    background-color: #88f591;
    color: #000000;
}
.error {
    background-color: #ffffff41;
    color: #e20909;
}
.how-it-works {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center; /* Center the steps container */
    align-items: center; /* Vertically align the items */
    padding-bottom: 20px;
}
.how-it-works-header{
    padding-top: 10px;
    font-size: 50px; 
    font-weight: bold; 
    background-color: #ffffff;
    text-align: center;
    border:none;
    width: 100%;
    margin-bottom: 0;
    font-family: 'Patrick Hand', sans-serif;
    color: #000000;
}

.steps {
    display: flex;
    gap: 30px; /* Space between the steps */
    color: #f4f4f9;
    font-size: 20px;

}

.step {
    max-width: 300px; /* Limit the width of each step */
    text-align: center;
    border: 2px solid #0f0f0f; /* Add a solid border for structure */
    background-color: #5b6e80; /* Background color */
    border-radius: 8px; /* Rounded corners for a softer look */
    padding: 20px; /* Add some padding inside each step */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth transitions */
}

.step img {
    width: 80%; /* Adjust the image width to 80% of the container width */
    height: auto; /* Maintain the aspect ratio */
    max-width: 150px; /* Limit the maximum width of the image */
    margin-bottom: 15px; /* Add some space between the image and the text */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.three {
    height: 75px; /* Adjust the height to fit better */
    width: auto; /* Maintain the aspect ratio of the image */
    vertical-align: middle; /* Align the image with the middle of the text */
    display: inline-block; /* Ensure it behaves like inline content */
    margin: 0; /* Remove extra margins */
    top: -5px; /* Move the image slightly upward */
    position: relative; /* Enable positioning tweaks */
}

.signup-wrapper {
    display: flex; /* Align form and image side by side */
    align-items: flex-start; ;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 10px auto;
}

.signup-container {
    width: 50%;  /* Increased width slightly */
    padding: 10px;  /* Reduced padding for the container */
    background-color: #ffffff;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);  /* Increased shadow intensity */
    margin-top: 5px;
    margin-bottom: 15px;
    border: 2px solid #0f0f0f;
}

.signupheader {
    width: 83%;
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;  /* Font size adjusted for better readability */
    font-weight: bold; /* Bold for emphasis */
    text-align: center; /* Center-align the heading */
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 1px; /* Space below the heading */
    color: #ffffff; /* Eye-catching color */
    text-transform: uppercase; /* Make the text uppercase */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.918);
    letter-spacing: 1px; /* Slight spacing between letters for visual appeal */
    border-radius: 4px; /* Optional: rounded corners */
}

.info-container {
    width: 45%;  /* Increased width slightly */
    margin: 10px 10px 15px 10px;  /* Reduced left and right margins to bring containers closer */
    padding: 10px;  /* Reduced padding for the container */
    background-color: #ffffff;
    border: 2px solid #0f0f0f; /* Add a solid border for structure */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);  /* Increased shadow intensity */
}

.info-container h2 {
    margin-top: 0;
    font-size: 30px;
    border-style: none;
}

.info-container h4 {
    font-size: 30px;
}

.info-container p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
    color: #000000;
}

.example-lead {
    background-color: #ffffff;
    padding: 15px; /* Smaller padding for info blocks */
    border-radius: 20px;
    border: 2px solid #000000;
    box-shadow: 1px 0px 15px rgba(0, 0, 0, 0.74); 
    transition: box-shadow 0.3s ease;
    text-align: center;
    color: #000000;
}

.example-lead p {
    margin: 5px 0;
    color: #000000;
}

.partner {
    background-color: #ffffff;
    padding-bottom: 30px;
    text-align: center;
    padding-top: 20px;
}

.partnerheader {
    width: 83%;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;  /* Font size adjusted for better readability */
    font-weight: bold; /* Bold for emphasis */
    text-align: center; /* Center-align the heading */
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px; /* Space below the heading */
    color: #000000; /* Eye-catching color */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Slight spacing between letters for visual appeal */
    border-radius: 4px; /* Optional: rounded corners */
}

.partnersub{
    font-size: 30px;  /* Smaller font size for heading */
    text-align: center;
    color: #ffffff;
    border-radius: 5px;
    background-color: #29292b;
    box-shadow: 0px 3px 6px rgba(29, 29, 29, 0.5), -3px -3px 6px rgba(50, 50, 50, 0.2); /* 3D effect */
    padding: 1px 15px 1px 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.partnertxt{
    font-size: 20px;
    text-align: center;
    color: #000000;
    max-width: 50%;
    margin: auto;
    background-color: #ffffff;
}

.pro-frame {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center; /* Center the steps container */
    align-items: center; /* Vertically align the items */
    padding-bottom: 40px;
    padding-top: 20px;
}

.prostep {
    max-width: 300px; /* Limit the width of each step */
    text-align: center;
    border: 2px solid #0f0f0f; /* Add a solid border for structure */
    background-color: #ffffff; /* Background color */
    border-radius: 8px; /* Rounded corners for a softer look */
    padding: 20px; /* Add some padding inside each step */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth transitions */
    color: #0f0f0f;
}

.prostep img {
    width: 100%; /* Adjust the image width to 80% of the container width */
    height: 50%; /* Maintain the aspect ratio */
    margin-bottom: 15px; /* Add some space between the image and the text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.service-grid {
    margin-bottom: 20px;
}

.service-images{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}

.service-item{
    text-align: center;
}

.service-images img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s;
    border: 1px solid #000000;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); 
}

.caption {
    margin-top: 0px;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 4px;
    background-color: #333;
}

.footer {
    display: flex;
    background-color: #ffffff;
    color: #000000;
    padding: 20px ;
    border-top: 2px solid #000000;
    width: 100%;
}

.footer-center {
    display: flex;
    justify-content: center; /* left & right apart */
    align-items: flex-start;
    width: 70%;
    gap: 80px;   
  }
  
  .footer-center .center-left,
  .footer-center .center-right {
    display: flex;
    flex-direction: column; /* stack links vertically */
    gap: 8px; /* spacing between links */
    align-items: center;
  }
  
  .footer-center a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
  }
  
  .footer-center a:hover {
    text-decoration: underline;
  }

.logo{
    height: 65px;                /* Maintain the image's aspect ratio */
    border: none;
    width: auto;
    margin-right: 2px;
}

.fa-brands {
    font-size: 30px;
    margin: 20px;
}

.locations {
    background-color: #5b6e80;
    margin: auto;
    width: 100%;
    padding: 20px 5% 20px 5%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, auto);
    gap: 5px;
  }

  .locations-item {
    padding: 10px;
    border: 1px solid #5f5f5f;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .terms-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.terms-container label {
    margin-right: 5px;
    margin-left: auto;
}




.hamburger {
    display: none; 
    font-size: 30px;
    cursor: pointer;
    color: #000000;
    background-color: transparent;
}

.hamburger:active {
    background: none !important;
}

.history-header {
    font-size: 30px; 
    font-weight: bold; 
    text-align: center;
    width: 80%;
    color: #ffffff;
    margin: auto;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.918);
}

.transactions {
    width: 80%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.pagination {
    display: flex; 
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically (if needed) */
    margin: 20px auto; /* Adjust margin for spacing */
    text-align: center; /* Ensures inline elements are centered */
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #000000;
    cursor: pointer;
}

.pagination:hover {
    border: 1px solid #fb3534;
}


/* Table Header */
.transactions thead {
    background-color: #343a40;
    color: white;
    text-transform: uppercase;
}

.transactions thead th {
    padding: 12px;
}

/* Table Body */
.transactions tbody tr {
    border-bottom: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
}

/* Media Queries for Responsiveness */

/* Small Devices (phones in portrait mode) */
@media only screen and (max-width: 600px) {

    nav ul {
        flex-direction: row;
        padding: 0 5px 0 0;
        margin: auto;
        align-items: center;
        width: 85%;
    }

    .topup-nav ul {
        flex-direction: column;
    }

    .nav-right {
        position: absolute;
        top: 82px;                /* start right under navbar */
        right: 0;                 /* stays inside viewport */
        width: auto;
        background: white;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: left;
        gap: 10px;
        padding: 10px 10px;
        box-shadow: -8px 6px 25px rgba(0,0,0,0.35);  
        border-radius: 8px 0 0 8px;
        z-index: 1000;
        height: auto;
        border: 1px solid #000000;
      }

      .overlay {
        position: absolute;
        top: 80;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0); /* dims the page */
        z-index: 999; /* below the menu */
        display: none; /* hidden by default */

      }
      
      .nav-right.active {
        display: flex; 
      }

      .overlay.active {
        display: block;
      }
    

    nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex; /* Show hamburger menu */
        background-color: #ffffff;
    }

   .signupheader {
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 15px;
   }

    h3 {
        font-size: 24px;
    }

    h4{
        font-size: 16px;
    }

    .img-home {
        display: none;
    }
    
    .container {
        max-width: 100%;
        margin: 10px;
        padding: 10px;
    }
    
    .form-container {
        width: 95%;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-sections {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-left, .form-right {
        width: 100%;
    }
    
    .search-container i {
        padding-top: 10px;
    }

    .home-part {
        flex-direction: column;
        background-color: #5b6e80;
        border: none;
        box-shadow: none;
        width: 100%;
    }
    
    .img-home {
        width: 100%;
        height: 200px;
    }
    form input[type="submit"] {
        font-size: 17px;
    }

    .signup-wrapper {
        flex-direction: column;
        margin-top: auto;
    }
    
    .signup-container,
    .info-container {
        width: 90%;
        margin: auto;
    }

    .terms-container{
        display: flex;
        flex-direction: column-reverse; /* Stack the steps vertically */
        align-items: center; 
        margin: auto;
    }
    .steps {
        display: flex;
        flex-direction: column; /* Stack the steps vertically */
        align-items: center; /* Center the items */
        gap: 20px; /* Add space between each step */
    }

    .partnertxt{
        max-width: 80%;
    }
    .service-images {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .service-images img {
        height: 70px;
    }

    .locations{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 90%;
        margin: 0 auto; /* Centers horizontally */
        gap: 2px;
        font-size: 10px;
    }

    .transactions {
        width: 95%;
        margin: auto;  /* Center the table */
        font-size: 13px;  /* Adjust font size to make it more readable */
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-center {
        flex-direction: column;   /* stack left and right vertically */
        align-items: center;
        width: 100%;             /* full width on small screens */
        gap: 12px;               /* smaller gap between sections */
        margin-bottom: 24px;
      }
      
      .footer-center .center-left,
      .footer-center .center-right {
        align-items: center;     /* keep links centered */
        
      }
}

/* Medium Devices (tablets in portrait mode) */
@media only screen and (min-width: 601px) and (max-width: 768px) {
    h3 {
        font-size: 24px;
        margin-bottom: 2px;
    }

    h4 {
        font-size: 15px;
        width: 70%;
        text-align: center;
        margin: 0 auto;
    }

    .img-home {
        display: none;
    }

    form input[type="submit"] {
        font-size: 18px;
    }

    .content-wrapper{
        margin-left: 5px;
        width: 100%;
        margin-bottom: 5px;
    }

    .form-container {
        width: 100%;
    }
    
    .form-left, .form-right {
        width: 100%;
    }

    .search-container i {
        padding-top: 10px;
    }

    .signup-wrapper {
        width: 90%;
        display: flex;
        flex-direction: column; /* Makes the children stack vertically */
        align-items: center; /* Optional: centers the children horizontally */
        justify-content: flex-start; /* Optional: aligns children at the top */
    }

    .signup-container,
    .info-container {
    width: 100%;
    margin-bottom: 5px; 
}
.locations{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 90%;
    margin: 0 auto; /* Centers horizontally */
    gap: 2px;
    font-size: 10px;
}
    .service-images {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Large Devices (laptops and above) */
@media only screen and (min-width: 769px) {
    .container {
        max-width: 450px;
        margin: 20px auto;
    }
    
    .form-container {
        width: 60%;
    }
    
    .content-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .img-home {
        width: 40%;
        height: 400px;
    }
    
    .signup-wrapper {
        flex-direction: row;
    }
    
    .service-images {
        grid-template-columns: repeat(5, 1fr);
    }
}