 /* Reset some default styles */
 body,
 h1,
 h2,
 h3,
 p {
     margin: 0;
     padding: 0;
 }

  body {
     font-family: 'Nunito', sans-serif;
     line-height: 1.6;
     background-color: #f0f0f0;
     color: #333;
     margin: 20px;
 }

 /* Banner styles */
 .container {
     position: relative;
     background-image: url('../images/banner-bg.jpg');     
     background-size: cover;
     background-position: center;
     color: white;
     text-align: left;
     padding: 80px 20px;
 }

 .banner-content {
     max-width: 600px;
 }

 .banner h3 {
     font-size: 1.5em;
     margin-bottom: 10px;
 }

 .banner h1 {
     font-size: 2em;
     margin-bottom: 20px;
 }

 /* Social icons */
 .social-icons {
     position: absolute;
     bottom: 0;
     right: 0;
     transform: translateX(-1%);
     padding: 10px 0 0 10px;
     background: #000;
 }

 .icon-link {
     margin-right: 10px;
 }

 /* Navbar styles */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;

     padding: 10px 20px;
 }

 .logo-container img {
     max-height: 40px;
     /* Adjust the height as needed */
 }

 .menu-toggle {
     display: none;
     /* Hide by default for larger screens */
     cursor: pointer;
     font-size: 1.8em;
     color: white;
 }

 .nav-list {
     list-style: none;
     display: flex;
 }

 .nav-list li {
     margin-right: 20px;
 }

 .nav-list a {
     text-decoration: none;
     color: white;
     font-weight: bold;
     font-size: 16px;
 }

 .scroll-down-arrow img {
     float: right;
 }

 /* Container styles */
 .container {
     max-width: 100%;
     margin: 0 auto;
     padding: 20px;

 }

 .banner-container {
     height: 420px;
 }

 /* Media query for smaller screens (mobile) */
 @media only screen and (max-width: 768px) {
     .nav-list {
         display: none;
         /* Hide the menu by default on smaller screens */
         flex-direction: column;
         background-color: #CD283B;
         position: absolute;
         top: 60px;
         left: 0;
         width: 100%;
     }

     .nav-list.show {
         display: flex;
         /* Show the menu when the show class is added */
     }

     .menu-toggle {
         display: block;
         /* Show the menu toggle button for smaller screens */
     }
 }

 /* New styles for the content section */
 .content-section {
     background-color: #fcfcfc;
     /* Light grey background */
     padding: 40px 20px;
 }

 .content-container {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     /* Align columns at the top */
 }

 .column {
     flex: 1;
     padding: 0 10px;

 }

 .column p {
     width: 70%;
 }

 .red-heading {
     color: #B42737;
     font-size: 1.6em;
     /* Adjust the font size as needed */
 }

 .white-heading {
     color: #fff;
     font-size: 1.6em;
     /* Adjust the font size as needed */
 }

 /* New styles for the tiles section */
 .tiles-section {
     background-color: #fff;
     /* White background */
     padding: 40px 20px;
 }

 .tile-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
 }

 .tile {
     flex: 0 0 calc(30.33% - 20px);
     margin-bottom: 20px;
     padding: 20px;
 }

 .icon {
     font-size: 24px;
     margin-bottom: 10px;
 }

 .centered-section {
     background-color: #f0f0f0;
     /* Light background color */
     text-align: center;
     padding: 40px 20px;
 }

 .centered-content {
     max-width: 600px;
     margin: 0 auto;
 }

 /* Optional: Customize the carousel appearance */
 .swiper-container {
     width: 100%;
     margin: 20px auto;
 }

 .swiper-slide {
     width: 426px;
     height: 302px;
     overflow: hidden;
 }

 .swiper-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .slider-section {
     overflow: hidden;
 }

 .additional-section {
     background-color: #B42737;
     /* Choose a background color */
     padding: 40px 20px;
 }

 .additional-section .content-container {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 .additional-section .column {
     flex: 1;
     padding: 0 10px;
 }

 .additional-section .red-heading {
     color: #B42737;
     font-size: 1.6em;
 }

 .additional-section .cta-column {
     text-align: center;
 }

 .additional-section .cta-arrow {
     cursor: pointer;
     margin-top: 20px;
 }

 .additional-section .cta-arrow img {
     width: 30px;
     /* Adjust the size as needed */
     height: 30px;
 }

 .btn-with-border {
     text-align: center;
     text-decoration: none;
     color: #fff;
     border: 1px solid #fff;
     padding: 10px 20px;
     display: block;
     width: 150px;
     float: right;
     margin-right: 20px;
 }

 .additional-section p {
     color: #fff;
 }

 /*Footer*/
 .footer {
     background-color: #fff;
     border-top: 1px solid #ccc;
     padding: 20px;
     text-align: center;
     margin-top: 20px;
 }

 .footer-logo {
     width: 149px;
 }

 .address {
     display: flex;
     justify-content: space-between;
     font-size: 12px;
     margin-bottom: 10px;
     text-align: left;
 }

 .address a {
     text-align: left;
     text-decoration: none;
     color: inherit;
 }

 .copyright {
     font-size: 10px;
     color: #777;
     margin-top: 10px;
     border-top: 1px solid #ccc;
     padding-top: 10px;
 }