 /* Reset & base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      height: 100%;
      font-family: Arial, sans-serif;
    }

    /* Background image for landing page */
    .hero {
      position: relative;
      height: 80vh;
      background: url('../images/navbackground.png') no-repeat center center/cover;
      display: flex;
      flex-direction: column;
      
    }

    .hero::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 80vh;
     background: rgba(0, 0, 0, 0.35); /* adjust darkness */
     z-index: 1;
    }

    #hero{
      height: 30vh;
      background-color: #0d0d0e;
      display: flex;
      flex-direction: column;  
    }

    /* Navbar styles */
/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown toggle button */
.dropdown-toggle {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #f7f5f0;   /* Always light */
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.3s ease;
}

/* Desktop dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d0d0e;
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 200;
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #f7f5f0 !important; /* Force light color */
  text-decoration: none;
  font-size: 1.1rem;
}

.dropdown-menu a:hover {
  background: rgba(0, 60, 255, 0.15);
  color: #f7f5f0 !important;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ensure dropdown toggle and links are visible even when nav is scrolled */
nav.scrolled .dropdown-toggle {
  color: #000;
}
nav.scrolled .dropdown-menu a {
  color: #171716 !important;
}

/* Hamburger & Mobile menu */
@media (max-width: 768px) {

  /* Mobile nav links container */
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    gap: 5px;
    width: 200px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .nav-links.open {
    height: auto;
    padding: 1rem 0;
  }

  .nav-links li {
    padding: 1rem;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile dropdown menu */
  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
  }

  .dropdown.open .dropdown-menu {
    height: auto;
    visibility: visible;
  }

  /* Mobile dropdown links */
  .dropdown-menu a {
    padding: 0.45rem 0;
    font-size: 1.2rem;
    color: #f7f5f0 !important;
  }

  .dropdown-menu a:hover {
    background: rgba(0, 60, 255, 0.15);
    color: #f7f5f0 !important;
  }

  /* Ensure dropdown toggle is light */
  .dropdown-toggle {
    color: #f7f5f0 !important;
  }
}



    
    nav {
      width: 100%;
      color: rgb(255, 255, 255);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1rem;
      position: fixed;
      top: 0px;
      left: 0;
      z-index: 100;
    }

    /* Logo + name */
    .logo {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      margin-left: 5%;
    }
    .logo img {
      height:85px;
    }
    .logo span {
      font-size: 1.6rem;
      font-weight: bold;
    }

    
    #span2{
      font-size: 1.5rem;
      font-weight:lighter;
      font-style: italic;
      color:#003cff;
    }

    /* Menu links */
    .nav-links {
      display: flex;
      gap: 5rem;
      list-style: none;
      margin-right:33%;
    }
    /* When scrolled */
nav.scrolled {
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Change nav links when scrolled */
nav.scrolled .nav-links a {
  color: #000;
}
nav.scrolled .logo span {
  color: #000;
}

nav.scrolled .hamburger div {
  background: #000;
}

/* Keep hover blue */
nav.scrolled .nav-links a:hover {
  color: #003cff;
}

    .nav-links a {
      text-decoration: none;
      color: rgb(255, 253, 253);
      font-size: 1.4rem;
      transition: color 0.3s ease;
    }
    .nav-links a:hover {
      color: #003cff;
    }
    
    .dropdown-menu a {
  color: #f7f5f0 !important;  /* force light color */
}

/* Hover effect */
.dropdown-menu a:hover {
  background: rgba(0, 60, 255, 0.15);
  color: #f7f5f0 !important;
}

/* When nav is scrolled (desktop) */
nav.scrolled .dropdown-menu a {
  color: #f7f5f0 !important;
}

    /* Hamburger button */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }
    .hamburger div {
      width: 25px;
      height: 3px;
       background: #fff;
    }

    /* Hero Text */
.hero-text {
  position: relative; /* sits above overlay */
  z-index: 2;
  color: white;
  text-align: center;
  margin-top: auto; /* pushes content below navbar */
  margin-bottom: 10%; /* adjust space from bottom */
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.hero-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #003cff;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.hero-btn:hover {
  background: #001f7f;
}
/* Who We Are Section */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 10%;
  gap: 3rem;
  background: #f8f9fa;
}

/* Text */
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003cff;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* Structured Image Layout */
.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 1rem;
}
.about-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.about-images img:hover {
  transform: scale(1.05);
}
/* CTA Card */
.cta {
  margin: 2rem 2%;
  padding: 2rem 3rem;
  height: 130px;
  background: #2d046e; /* purple background */
  color: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1rem;
  color: #f1f1f1;
}

/* Button */
.cta-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #fff;
  color: #3d00a0;
}

/* Blog Coming Soon Section */
.blog-coming {
  text-align: center;
  padding: 5rem 10%;
  background: #f8f9fa;
}

.blog-coming h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #003cff;
}

.blog-coming p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Coming Soon Card */
.coming-card {
  background: #fff;
  border: 2px dashed #003cff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.coming-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.coming-card p {
  color: #666;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
}

.footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #003cff; /* Oasis blue */
}

/* Services Section */
.services {
  padding: 5rem 10%;
  background: #fff;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #003cff;
}

/* Service item */
.service {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service img {
  width: 650px;
  height: 350px;
  border-radius: 39px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.service-text ul {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.service-text li {
  padding-bottom:10px;
  
}
/* Alternate (flipped layout) */
.service.reverse {
  flex-direction: row-reverse;
}
.ourservices{
    margin-top: 100px;
}
    /* Mobile styles */
    @media (max-width: 768px) {
         nav {
         width: 100%;
         color: rgb(0, 0, 0);
         background-color: rgb(255, 255, 255);
         top:0px;
         left: 0;
         z-index: 100;
        }

       .logo {
        display: flex;
        align-items: center;
        gap: 0.2rem;
        margin-left:0%;
        }

      .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap:5px;
        width: 200px;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
      }
      .nav-links.open {
        height: 330px;
        padding: 1rem 0;
      }
      .nav-links li {
        padding: 1rem;
        text-align: center;
      }
      .hamburger {
        display: flex;
      }
      .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about-images {
    grid-template-columns: 1fr; 
  }
  .cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    height: 300px;
  }
  .cta-btn {
    margin-top: 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .service, .service.reverse {
    flex-direction: column;
    text-align: center;
  }
  .service img {
    width: 100%;
  }
  .service-text h3 {
    margin-top: 1rem;
  }
  
  .dropdown-menu {
    position: static;         /* inside hamburger menu */
    background: rgba(0,0,0,0.9);
    box-shadow: none;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    border-radius: 0;
  }

  .dropdown.open .dropdown-menu {
    visibility: visible;
    height: auto;
  }

  .dropdown-menu a {
    padding: 0.75rem;
    font-size: 1rem;
    color: #f7f5f0;
  }

  .dropdown-menu a:hover {
    background: rgba(0, 60, 255, 0.15);
  }
  
  .nav-links a,
  .dropdown-menu a {
    color: #f7f5f0 !important; /* make all mobile menu text light */
  }

  .dropdown-menu a:hover {
    background: rgba(0, 60, 255, 0.15);
    color: #f7f5f0 !important;
  }
    }
    
 /* Elegant Footer – Cream Theme */
.footer-advanced {
  background: #0d0d0e;
  color: #f7f5f0;
  font-size: 0.95rem;
}

/* Grid */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 3.5rem 10%;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 70px;
}

.brand-name {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #f7f5f0;
}

.brand-name span {
  font-style: italic;
  font-weight: normal;
  color: #003cff; /* Oasis blue accent */
}

.brand-tagline {
  color: rgba(247, 245, 240, 0.85);
  line-height: 1.6;
  max-width: 280px;
}

/* Titles */
.footer-contact h4,
.footer-links h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Contact */
.footer-contact p {
  margin-bottom: 0.75rem;
  color: rgba(247, 245, 240, 0.9);
}

.footer-contact a {
  color: #f7f5f0;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(247, 245, 240, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #cfe4f7;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  color: #f7f5f0;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .brand-tagline {
    margin: 0 auto;
  }
}

/* Styles for the contact page */
.contact-page {
  background: #aee0eb;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.contact-form-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
}

.contact-form h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #153899; /* Blue highlight */
  outline: none;
}

.contact-form button {
  background: #153899;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #45a049;
}

/* Basic Styling for the Feedback Page */

.feedback-page {
    max-width: 1200px;
    padding: 2rem;
}

.feedback-header {
    text-align: center;
    margin-bottom: 2rem;
}

.feedback-header h1 {
    font-size: 2.5rem;
    color: #153899;
}

.feedback-header p {
    font-size: 1.2rem;
    color: #333;
}

.feedback-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: #153899;
    outline: none;
}

.feedback-form button {
    background-color: #153899;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
}

.feedback-form button:hover {
    background-color: #45a049;
}

.feedback-image {
    text-align: center;
    margin-top: 3rem;
}

.feedback-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Feedback Page Styling */
.feedback-banner {
  background: url('../images/navbackground.png') no-repeat center center/cover;
  background-color: rgba(0, 0, 0, 0.6); 
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.feedback-form-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.feedback-form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feedback-form-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.feedback-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Merriweather', serif; /* Elegant, professional font */
}

.feedback-form h2 {
    font-size: 2rem;
    color: #153899;
    text-align: center;
    margin-bottom: 1.5rem;
}

.feedback-form label {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.feedback-form select, .feedback-form textarea, .feedback-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.feedback-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.feedback-form button:hover {
    background-color: #45a049;
}


/* Additional Avenues of Support Section */
.support-section {
  background-color: #f4f4f4; /* light background */
  padding: 1rem;
  margin-top: 2rem;
  text-align:center;
  font-family: 'Merriweather', serif;
}

.support-section h2 {
  font-size: 2rem;
  color: #153899;
  margin-bottom: 1rem;
  
}

.support-section p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.support-section ul {
  list-style: none;
  padding: 0;
  
}

.support-section ul li {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.support-section ul li strong {
  color: #153899; /* Accent color for headings */
}

/* Feedback Banner Section */


.feedback-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.feedback-banner h1 {
  font-size: 3rem;
  color: #153899; /* Use your accent color */
  margin-bottom: 1rem;
}

.feedback-banner p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .feedback-banner {
    padding: 3rem 1rem;
  }

  .feedback-banner h1 {
    font-size: 2rem;
  }

  .feedback-banner p {
    font-size: 1rem;
  }
}

.feedback-form-section p {
  font-family: 'Merriweather', serif; /* Professional serif font */
  font-size: 1.2rem; /* Slightly larger text for readability */
  font-weight: 400; /* Regular weight for readability */
  color: #333; /* Dark gray for a more professional look */
  line-height: 1.8; /* Increased line-height for better readability */
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center; /* Center the text for a clean, symmetrical look */
  max-width: 800px; /* Limit width for better readability */
  margin-left: auto;
  margin-right: auto;
  text-align:justify;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .feedback-form-section p {
    font-size: 1rem; /* Adjust text size for mobile */
    line-height: 1.6; /* Adjust line-height for mobile */
    padding: 0 1rem; /* Add some padding for mobile */
  }
}

/* Focus effect for input fields */
.feedback-form input:focus,
.feedback-form textarea:focus,
.feedback-form select:focus {
    border-color: #003cff;
    outline: none;
    background-color: #ffffff;
}

/* Submit button */
.feedback-form button {
    background-color: #003cff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

/* Button hover effect */
.feedback-form button:hover {
    background-color: #001f7f;
}

/* Spacing and structure for individual input fields */
.feedback-form input,
.feedback-form textarea {
    font-size: 1rem;
    padding: 12px;
}

/* Form spacing between sections */
.feedback-form .input-group {
    margin-bottom: 1.5rem;
}

/* Add spacing between paragraphs */
.feedback-form p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .feedback-form {
        padding: 1.5rem;
    }

    .feedback-form h2 {
        font-size: 1.8rem;
    }

    .feedback-form label {
        font-size: 1rem;
    }

    .feedback-form input,
    .feedback-form textarea,
    .feedback-form select {
        font-size: 1rem;
    }

    .feedback-form button {
        font-size: 1rem;
    }
}

/* Feedback Info Section */
.feedback-info-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: left;
    font-family: 'Merriweather', serif;
}

.feedback-info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feedback-info-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feedback-info-item h3 {
    font-size: 1.6rem;
    color: #153899;
    margin-bottom: 1rem;
}

.feedback-info-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.feedback-info-item ul li {
    margin-bottom: 0.8rem;
}

.feedback-info-item ul li a {
    color: #003cff;
    text-decoration: none;
}

.feedback-info-item ul li a:hover {
    text-decoration: underline;
}

.feedback-icon {
    width: 50px;
    height: auto;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .feedback-info-item {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .feedback-info {
        flex-direction: column;
        gap: 2rem;
    }

    .feedback-info-item h3 {
        font-size: 1.4rem;
    }

    .feedback-info-item ul li {
        font-size: 1.1rem;
    }
}
