
        #cookie-consent {
            position: fixed;
            bottom: 10px;
            left: 10px;
            right: 10px;
            padding: 20px;
            background-color: #f4f4f9;
            color: #808080;
            border-radius: 1px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            display: none;
            z-index: 1000;
            box-sizing: border-box; /* Ensures padding doesn't overflow the container */
            width: auto;
            max-width: 100%; /* Ensure the banner doesn't overflow the screen */
            margin: 0 auto;
        }

        #cookie-consent a {
            color: #f2c56f;
            text-decoration: underline;
        }

        #cookie-consent a:hover {
            text-decoration: none;
        }

        #cookie-consent p {
            margin: 0 0 10px;
            line-height: 1.5;
            font-size: 0.7rem;
            word-wrap: break-word; /* Ensure long words don't overflow */
        }

        .accept-cookies-button {
            padding: 4px 8px;
            background-color: #f2c56f;
            color: #808080;
            border: none;
            border-radius: 2px;
            font-size: 0.6rem;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-right: 4px; /* Add space between buttons */
            white-space: nowrap; /* Prevent button text from wrapping */
        }

        .accept-cookies-button:hover {
            background-color: #f1680e;
            color: #fff;
            transform: scale(1.05);
        }

        @media screen and (max-width: 768px) {
            #cookie-consent {
                font-size: 0.7rem;
            }

            .accept-cookies-button {
                padding: 7px 9px;
                font-size: 0.6rem;
                margin-right: 5px; /* Reduced margin for smaller screens */
            }
        }
        
        @media screen and (max-width: 480px) {
            #cookie-consent {
                padding: 15px;
                font-size: 0.6rem;
            }
        
            .accept-cookies-button {
                padding: 6px 10px;
                font-size: 0.6rem;
                margin-right: 2px;
            }
        }

        .dropdown-content {
            display: none;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 768px) {
            .dropdown-content {
                position: static;
                box-shadow: none;
            }
        }
        .u-nav-2 .u-nav-link {
          font-size: 18px;
          display: inline-block;
          margin-bottom: 10px;
        }
   
      body {
        padding-top: 35px;
      }
    
      /* Responsive styling for small screens */
      @media (max-width: 600px) {
        .top-navbar {
          flex-direction: column;
          height: auto;
          padding: 5px 20px;
          gap: 5px;
          align-items: flex-start;
          font-size: 13px;
        }
      }
    
      @media (max-width: 480px) {
        .top-navbar {
          font-size: 10px;
          padding: 0 10px;
          gap: 10px;
          flex-direction: column;
          height: auto;
        }
      }
    
            /* Default (desktop) */
            .u-logo-image {
              max-width: 200px; /* adjust for desktop */
              height: auto;
            }
        
            /* Mobile screens */
            @media (max-width: 768px) {
              .u-logo-image {
                max-width: 120px; /* smaller size for phones */
              }
            }
        
            @media (max-width: 480px) {
              .u-logo-image {
                max-width: 90px; /* even smaller for very small screens */
              }
            }
         
        .u-social-icons-2 {
          display: flex;
          justify-content: flex-start;
          align-items: center;
          padding: 0;
          margin: 0;
        }
        
        .u-social-icons-2 a {
          display: inline-flex;
          margin-right: 5px; /* small space between icons */
        }
        
        .u-social-icons-2 a:last-child {
          margin-right: 0;
        }
        
        .u-social-icons-2 .u-icon {
          width: 38px;
          height: 38px;
          transition: transform 0.3s;
        }
        
        .u-social-icons-2 .u-icon:hover {
          transform: scale(1.2);
        }
        
        .u-social-icons-2 .u-icon {
          color: #f1680e; /* or your preferred color */
        }

        
              @media (max-width: 768px) {
                .top-navbar {
                  flex-direction: column;
                  gap: 8px;
                  padding: 10px 20px;
                  font-size: 14px; /* Slightly bigger for mobile taps */
                  height: auto;
                }
              }
            /* ==============================
               FOOTER – MY WORKER
               ============================== */
            
            /* FOOTER BACKGROUND */
            .site-footer {
                background: #3d3d5c; /* same as contact section */
                padding: 60px 20px 40px;
                font-family: 'Open Sans', sans-serif;
                color: #ffffff;
            }
            
            /* FOOTER LOGO – CENTERED & SMALLER */
            .site-footer .footer-logo-link {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 40px;
            }
            
            /* Desktop size */
            .site-footer .footer-logo-link .u-logo-image {
                max-width: 140px;
                height: auto;
            }
            
            /* Tablet */
            @media (max-width: 768px) {
                .site-footer .footer-logo-link .u-logo-image {
                    max-width: 110px;
                }
            }
            
            /* Mobile */
            @media (max-width: 480px) {
                .site-footer .footer-logo-link .u-logo-image {
                    max-width: 90px;
                }
            }
            
            /* FOOTER GRID */
           .site-footer .footer-grid {
                max-width: 1200px;
                margin: auto;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }
            
            /* FOOTER TITLES */
            .site-footer h4 {
                font-size: 15px;
                font-weight: bold;
                margin-bottom: 15px;
                text-transform: uppercase;
                color: #ffffff;
            }
            
            /* FOOTER LISTS */
            .site-footer ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .site-footer ul li {
                font-size: 14px;
                margin-bottom: 8px;
                color: #e6e6e6;
            }
            
            .site-footer ul li::before {
                content: "› ";
                color: #f26a21;
                font-weight: bold;
            }
            
            /* CONTACT INFO */
            .site-footer .footer-contact {
                margin-top: 20px;
            }
            
            .site-footer .footer-contact p {
                margin: 6px 0;
                font-weight: bold;
                color: #f26a21;
            }
            
            /* FOOTER BOTTOM TEXT */
            .site-footer .footer-bottom {
                margin-top: 25px;
                font-size: 13px;
                color: #cfcfcf;
            }
            
            /* RESPONSIVE LAYOUT */
            @media (max-width: 900px) {
                .site-footer .footer-grid {
                    grid-template-columns: 1fr;
                    text-align: center;
                }
            
                .site-footer ul li::before {
                    content: "";
                }
            }
            .site-footer a {
                color: inherit;          /* same color as text */
                text-decoration: none;   /* remove underline */
                transition: color 0.3s ease;
            }
            
            /* Hover effect (optional but recommended) */
            .site-footer a:hover {
                color: #f26a21;          /* brand orange on hover */
                text-decoration: none;
            }
            
            