
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans';
        }
        
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        main {
            flex: 1;
        }
        
        /* Back to top section */
        .back-to-top {
            background-color: #F5F5F5;
            padding: 28px 0;
            font-size: 1.2rem;
            text-align: center;
            border-top: 1px solid #e3dede;
            outline:none !important;
        }
        
        .back-to-top a {
            color: #484848;
            text-decoration: none;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            outline:none !important;
        }
        .back-to-top:hover {
            background-color:  #E3EEF5;
            border-top: 1px solid #b8a6a6;
            outline:none !important;
        }
        
        .back-to-top a svg {
            margin-left: 5px;
        }
        
        /* Main footer */
        .footer-main {
            background-color: #395B73;
            color: white;
            padding: 39px 110px;
        }
        
        .footer-container {
            max-width: 1000%;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .footer-column {
            flex: 1;
        }
        .contact-column {
           min-width: 490px;
        }
        .footer-column h3 {
            font-size: 1.2rem !important;
            margin-bottom: 20px !important;
            font-weight: 600 !important;
            color:white !important;
        }
        
        .footer-column p {
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .footer-column ul {
            list-style: none;
            margin: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: white;
            text-decoration: none;
        }
        
        .footer-column ul li a:hover {
            text-decoration: underline;
        }
        
        /* Social media icons */
        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .social-icon {
            background-color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .social-icon a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        
        .social-icon svg {
            fill: #3a5d7a;
            width: 20px;
            height: 20px;
        }
        .link a{
            margin-bottom: 20px;

        }
        
        /* Membership box */
        .membership-box {
            background-color: #325167;
            text-align: center;
            padding: 25px;
            min-width: 260px;
            border-radius: 14px;
        }
        
        .membership-box h3 {
            margin-bottom: 15px;
        }
        
        .membership-box p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .join-button1 {
            display: inline-flex;
            align-items: center;
            background-color: #395B73;
            color: white;
            border: 1px solid white;
            padding: 14px 26px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            height: 47px;
        }
        
        .join-button1:hover {
            background-color: white;
            color: #3a5d7a;
        }
        
        .join-button1 svg {
            margin-left: 10px;
        }
        
        /* Footer bottom */
        .footer-bottom {
            background-color: #1e2e3a;
            color: white;
            padding: 11px 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
        }
        
        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        
        .footer-logo {
            max-width: 320px;
   
        }
        
        .footer-logo img {
            width: 100%;
            height: auto;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 24px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .footer-copyright {
            width: 100%;
            text-align: start;
            margin-top: 20px;
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .footer-column .link {
            margin-bottom: 20px; /* or whatever spacing you want */
        }
          
        /* Improved Responsive adjustments */
        @media (max-width: 1024px) {
            .footer-main {
                padding: 52px 50px;
            }
            
            .footer-bottom {
                padding: 16px 50px;
                flex-direction: column;
            }
            
            .contact-column {
                min-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-main {
                padding: 40px 30px;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .footer-column {
                width: 100%;
                flex-basis: 100%;
            }
            
            .contact-column {
                min-width: 100%;
            }
            
            .footer-bottom {
                padding: 37px 30px;
            }
            
            .footer-bottom-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .footer-logo {
                margin-bottom: 20px;
                width: 100%;
                max-width: 250px;
                margin-left:-10px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 20px;
                
                width: auto; /* Adjust width to the image's natural width */
                margin-left: 0; /* Align to the left */
            }
            
            .membership-box {
                min-width: 100%;
            }
            
            .social-icons {
                justify-content: flex-start;
            }
            
        }
        
        @media (max-width: 480px) {
            .footer-main {
                padding: 30px 20px;
            }
            
            .footer-bottom {
                padding: 16px 20px;
            }
            
            .back-to-top {
                padding: 20px 0;
                font-size: 1rem;
            }
            
            .footer-column h3 {
                font-size: 1.1rem;
            }
            
            .footer-copyright {
                font-size: 0.9rem;
            }
            
            .join-button1 {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
  