* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
}

body {

}

a {
    text-decoration: none;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* หรือสีพื้นหลังของ preloader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    /* เริ่มต้นด้วย opacity 1 */
    transition: opacity 0.5s ease-out;
    /* เพิ่ม transition */
}

.cement-truck-animation img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.cement-truck-animation .pouring {
    width: 20px;
    height: 100px;
    animation: pour 2s infinite ease-in-out;
    margin: 0 auto;
    border-radius: 5px;
}

@keyframes pour {
    0% {
        height: 0;
        opacity: 0.2;
    }

    50% {
        height: 80px;
        opacity: 1;
    }

    100% {
        height: 0;
        opacity: 0.2;
    }
}

.cement-truck-animation p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 0px;
}


.contactus-header-section {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('/assets/images/banners/headbanner2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contactus-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 50%, rgba(139, 0, 0, 0.4) 100%);
    z-index: 1;
}

.content-header {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeInScale 1s ease-out forwards;
}

.content-header h1 {
    font-size: 4.5em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.content-header h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
}

.contactus-header-title {
    font-size: 1.2em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.contactus-header-title a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contactus-header-title a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contactus-header-title span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-redline {
    width: 100%;
    height: 10vh;
    background: linear-gradient(to right, #ff1313, #ff1313, #8f0000);
}


.contact-section,
.contact-factory-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    background-color: #ffffff;
    gap: 60px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 10px;
}

.contact-info,
.contact-factory-info {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    padding: 0;
}

.contact-section-title,
.contact-factory-section-title {
    font-size: 2.2em;
    color: #cb2027;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.contact-section-title::after,
.contact-factory-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #cb2027;
    border-radius: 2px;
}

.contact-section-location-group {
    display: flex;
    flex-direction: column;
}
.contact-location-name,
.contact-factory-location-name {
    font-size: 1.6em;
    color: #333;
    font-weight: 500;
    margin-bottom: 0px;
}
.contact-section-location-group p {
    margin-top: 0; 
    margin-bottom: 0; 
    font-size: 1.1em;
    color: #666;
}
.contact-address,
.contact-factory-address {
    font-size: 1.05em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-details,
.contact-factory-details {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.contact-details li,
.contact-factory-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.contact-details li i,
.contact-factory-details li i {
    color: #cb2027;
    font-size: 1.4em;
    margin-right: 20px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.contact-details li span a,
.contact-factory-details li span a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-details li span a:hover,
.contact-factory-details li span a:hover {
    color: #cb2027;
    text-decoration: none;
}

.contact-details li span:first-of-type,
.contact-factory-details li span:first-of-type {
    font-weight: 600;
    margin-right: 15px;
    color: #333;
}

.contact-details li span:last-of-type,
.contact-factory-details li span:last-of-type {
    font-weight: 400;
    color: #555;
    word-break: break-word;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin: 0;
    font-family: 'Kanit', sans-serif;
    line-height: 1.6;
    box-sizing: border-box;
    padding: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.05em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.btn-red {
    background-color: #cb2027;
    color: #ffffff;
}

.btn-red:hover {
    background-color: #a81a20;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-google {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #cb2027;
}

.btn-google:hover {
    background-color: #cb2027;
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-google:hover i {
    color: #ffffff;
}

/* Map containers */
.map-container,
.map-factory-container {
    flex: 1.5;
    min-width: 350px;
    max-width: 650px;
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 0;
    padding-bottom: 45%;
    max-height: 350px;
}

.map-container iframe,
.map-factory-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* #social-main-container */
.social-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background-color: #e6e6e6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-column {
    text-align: center;
}

.insee-text {
    font-weight: 700;
    font-size: 2.5rem;
    color: #e4002b;
    margin: 0;
}

.follow-us-text {
    font-size: 1.2rem;
    color: #000000;
    margin: 5px 0 0;
}

/* Social Icons Section */
.social-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-icons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #e4002b;
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.icon-link.line:hover {
    background-color: #00C300;
}

.icon-link.facebook:hover {
    background-color: #1877F2;
}

.icon-link.email:hover {
    background-color: #EA4335;
}

.icon-link.phone:hover {
    background-color: #2c3e50;
}

.social-insee-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: #e4002b;
    margin: 0;
}

.social-us-text {
    font-size: 0.75rem;
    color: #000000;
    margin: 0;
}

/* QR Code Section */
.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e4002b;
    margin: 0;
    text-align: center;
}

.qr-code-img {
    width: 120px;
    height: 120px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.qr-code-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* ====== [Start] F O O T E R SECTION ============ */
/* #region */
.footer {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, #8B0000, #d71e1e);
    color: white;
    overflow: hidden;
    padding-top: 60px;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 0;
    opacity: 0.3;
}

.footer-overlay {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-section {
    flex: 1;
    min-width: 220px;
    padding: 35px;
}

.footer-brand img.footer-logo-img {
    width: 80px;
    margin-bottom: 1rem;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer p,
.footer li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffe6e6;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-btn {
    padding: 0.6rem 1.2rem;
    background: white;
    color: #a30000;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-btn:hover {
    background: #ffe5e5;
    transform: scale(1.05);
}

.footer-btn.line {
    background: #06c755;
    color: white;
}

.footer-map iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}



.copy-popup {
    visibility: hidden;
    min-width: 150px;
    background-color: #313131;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 12px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
}

.copy-popup.show {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 480px) {
    .footer-content {
        gap: 0;
    }

    .footer-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .footer-btn {
        padding: 0.5rem 0.9rem;
        font-weight: bold;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

}

@media (min-width: 481px) and (max-width: 1024px) {

    .footer-content {
        gap: 0;
    }

    .footer-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .footer-btn {
        padding: 0.5rem 0.9rem;
        font-weight: bold;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 25px;
    }

    .footer-content>div {
        flex: 1 1 calc(50% - 1rem);
        box-sizing: border-box;
    }

    .footer-section {
        justify-content: left;
        justify-items: left;
    }

    .footer-section a {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 16px;
    }

}


/* #endregion */
/* = = = = = [End] F O O T E R SECTION = = = = = */


  /* - - - - - [Start] N A V I G A T I O N- - - - - */
  /* #region */
  .header-fixed-position {
      width: 100%;
      position: fixed;
      top: 0;
      /* Ensure it's fixed to the top */
      left: 0;
      /* Ensure it starts from the left */
      z-index: 1000;
      /* Higher z-index to be on top of other content */
  }

  .NavOfPoonSingtoolayout {
      background: linear-gradient(to right, #d70000, #5a0000);
      font-family: 'Kanit', sans-serif;
      display: flex;
      /* Use flex on this container */
      align-items: center;
      justify-content: space-between;
      /* Space out nav-header-mobile-wrapper and nav-list */
      padding: 0 20px;
      height: 8vh;
      min-height: 50px;
      /* Add a min-height to ensure visibility on very small screens */
  }

  /* New: Main navigation container for flex properties */
  .main-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      /* Ensure it takes full width of parent */
  }

  /* New: Wrapper for logo and hamburger on mobile */
  .nav-header-mobile-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* Space between logo and hamburger */
      width: auto;
      /* Default for desktop */
  }

  .nav-lci-above-group1 {
      display: flex;
      align-items: center;
  }

  .nav-logoLCI {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .nav-img-logoLCI img {
      width: 40px;
      height: auto;
  }

  .nav-titlename-logoLCI h3 {
      color: #fff;
      font-size: 1.5rem;
      margin: 0;
  }

  .nav-list {
      list-style: none;
      display: flex;
      gap: 25px;
      margin: 0;
      padding: 0;
      align-items: center;
  }

  .nav-list li {
      position: relative;
  }

  .nav-list a {
      display: block;
      padding: 14px 20px;
      color: white;
      text-decoration: none;
      transition: background-color 0.3s ease;
  }

  .nav-list a:hover {
      background-color: #bc1a1a;
  }

  .dropdown:hover .dropdown-menu {
      display: block;
  }

  .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #730202;
      min-width: 160px;
      z-index: 1000;
  }

  .dropdown-menu li a {
      padding: 12px 16px;
      color: white;
      white-space: nowrap;
  }

  .dropdown-menu li a:hover {
      background-color: #a01616;
  }

  /* Hamburger Menu (Hidden by default on Desktop) */
  .hamburger-menu {
      display: none;
      /* Hidden on desktop */
      flex-direction: column;
      cursor: pointer;
      padding: 10px;
      z-index: 1100;
      /* Ensure hamburger is above other elements */
  }

  .hamburger-menu .bar {
      width: 25px;
      height: 3px;
      background-color: #fff;
      /* White bars for red background */
      margin: 4px 0;
      transition: 0.4s;
  }

  /* --- Responsive Adjustments for Mobile --- */
  @media (max-width: 768px) {
      .NavOfPoonSingtoolayout {
          height: auto;
          /* Height adapts to content when menu is open */
          flex-direction: column;
          /* Stack vertically */
          align-items: flex-start;
          /* Align logo and menu to the start */
          padding: 10px 20px;
      }

      .main-nav {
          flex-direction: column;
          align-items: flex-start;
      }

      .nav-header-mobile-wrapper {
          width: 100%;
          /* Take full width on mobile */
          justify-content: space-between;
          /* Space out logo and hamburger */
          align-items: center;
          min-height: 50px;
          /* Ensure this section has a minimum height */
      }

      .hamburger-menu {
          display: flex;
          /* Show hamburger on mobile */
      }

      .nav-list {
          display: none;
          /* Hide nav list by default on mobile */
          flex-direction: column;
          width: 100%;
          text-align: center;
          background-color: #630101;
          /* Darker red for mobile menu background */
          border-top: 1px solid rgba(255, 255, 255, 0.2);
          padding-top: 10px;
          padding-bottom: 10px;
          /* Add some bottom padding */
      }

      .nav-list.active {
          display: flex;
          /* Show nav list when active */
      }

      .nav-list li {
          margin: 10px 0;
          /* Space between list items */
          width: 100%;
          /* Full width for list items */
      }

      .nav-list a {
          font-size: 1.1rem;
          padding: 12px 0;
          /* Adjust padding for mobile links */
          display: block;
          /* Make links block level for better touch area */
          width: 100%;
          /* Make link take full width of li */
      }

      .nav-list a:hover {
          background-color: #a01616;
          /* Mobile hover color */
      }

      /* Hide dropdowns on mobile to simplify menu, or style them for mobile */
      .nav-list .dropdown-menu {
          position: static;
          /* Remove absolute positioning */
          background-color: transparent;
          /* No background for sub-menu */
          box-shadow: none;
          width: auto;
          padding: 0;
          margin-top: 5px;
          display: none;
          /* Keep hidden, will require JS to toggle for mobile dropdowns */
      }

      .nav-list .dropdown-menu li a {
          padding: 8px 16px;
          /* Adjust padding for dropdown items */
          font-size: 1rem;
          background-color: rgba(255, 255, 255, 0.1);
          /* Slight background for sub-items */
      }

      .nav-list .dropdown-menu li a:hover {
          background-color: rgba(255, 255, 255, 0.2);
      }

      .hamburger-menu.active .bar:nth-child(1) {
          transform: translateY(7px) rotate(45deg);
      }

      .hamburger-menu.active .bar:nth-child(2) {
          opacity: 0;
      }

      .hamburger-menu.active .bar:nth-child(3) {
          transform: translateY(-7px) rotate(-45deg);
      }
  }

  /* #endregion */
  /* = = = = = [End] N A V I G A T I O N = = = = = */



/* --- Responsive Design --- */

@media (max-width: 1024px) {

    .contact-section,
    .contact-factory-section {
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        gap: 40px;
    }

    .contact-info,
    .contact-factory-info,
    .map-container,
    .map-factory-container {
        min-width: unset;
        max-width: 100%;
        width: 100%;
    }

    .contactus-header-section {
        height: 300px;
    }

    .content-header h1 {
        font-size: 3.5em;
    }

    .contactus-header-title {
        font-size: 1em;
    }

    .map-container,
    .map-factory-container {
        padding-bottom: 56.25%;
        max-height: 400px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {

    .contact-section,
    .contact-factory-section {
        padding: 40px 15px;
        margin: 20px auto;
    }
    .contact-section-location-group p {
        font-size: 0.9em;
    }
    .content-header h1 {
        font-size: 2.8em;
        letter-spacing: 1px;
    }

    .content-header h1::after {
        width: 50px;
        height: 3px;
    }

    .contactus-header-title {
        font-size: 0.9em;
    }

    .contact-section-title,
    .contact-factory-section-title {
        font-size: 1.8em;
    }

    .contact-location-name,
    .contact-factory-location-name {
        font-size: 1.4em;
    }

    .contact-address,
    .contact-factory-address {
        font-size: 0.95em;
    }

    .contact-details li,
    .contact-factory-details li {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .contact-details li i,
    .contact-factory-details li i {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .contact-details li span:first-of-type,
    .contact-factory-details li span:first-of-type {
        margin-right: 5px;
        white-space: nowrap;
    }

    .contact-details li span:last-of-type,
    .contact-factory-details li span:last-of-type {
        display: inline;
        flex-direction: row;
        gap: 5px;
        flex-wrap: wrap;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .map-container,
    .map-factory-container {
        padding-bottom: 75%;
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .social-main-container {
        padding: 20px;
    }

    .insee-text {
        font-size: 2.5rem;
    }

    .follow-us-text {
        font-size: 1rem;
    }

    .icon-link {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .qr-heading {
        font-size: 1rem;
    }

    .qr-code-img {
        width: 100px;
        height: 100px;
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .contactus-header-section {
        height: 250px;
    }

    .content-header h1 {
        font-size: 2.2em;
    }

    .contactus-header-title {
        font-size: 0.8em;
    }

    .contact-section,
    .contact-factory-section {
        padding: 30px 10px;
        margin: 15px auto;
        gap: 30px;
    }

    .contact-section-title,
    .contact-factory-section-title {
        font-size: 1.6em;
    }

    .contact-location-name,
    .contact-factory-location-name {
        font-size: 1.2em;
    }

    .contact-address,
    .contact-factory-address {
        font-size: 0.9em;
    }

    .contact-details li,
    .contact-factory-details li {
        font-size: 0.95em;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.95em;
    }

    .map-container,
    .map-factory-container {
        padding-bottom: 85%;
        max-height: 250px;
    }
}

@media (min-width: 768px) {
    .social-main-container {
        flex-direction: row;
        justify-content: space-around;
        gap: 50px;
        padding: 50px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .social-social-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .social-icons-container {
        gap: 20px;
    }

    .icon-link {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .insee-text {
        font-size: 2.5rem;
    }

    .follow-us-text {
        font-size: 1.2rem;
    }

    .qr-heading {
        font-size: 1.2rem;
    }

    .qr-code-img {
        width: 120px;
        height: 120px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
}