
 
        footer {
           
            padding: 60px 20px 0;
        }

        .footer-main {
            max-width: 1400px;
            margin: 0 auto;
        }

     
        .footer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            color: #2c5f7d;
            gap: 8px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #00c853 0%, #00796b 100%);
            border-radius: 4px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c5f7d;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .social-links a:hover {
            background-color: rgba(44, 95, 125, 0.1);
            transform: translateY(-3px);
        }

        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            color: #2c5f7d;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #5a7f96;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #2c5f7d;
        }

        /* Get in Touch Section */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            color: #5a7f96;
            font-size: 14px;
            line-height: 1.6;
        }

        .contact-item a {
            color: #5a7f96;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #2c5f7d;
        }

        /* Divider */
        .footer-divider {
            height: 1px;
            background-color: #d0e4ed;
            margin-bottom: 40px;
        }

        /* Bottom Section */
        .footer-bottom {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            align-items: center;
            padding-bottom: 30px;
            margin-bottom: 20px;
            border-bottom: 1px solid #d0e4ed;
        }

        .trust-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(44, 95, 125, 0.1);
            border-radius: 8px;
            font-size: 20px;
        }

        .trust-content h4 {
            font-size: 14px;
            font-weight: 600;
            color: #2c5f7d;
            margin-bottom: 4px;
        }

        .trust-content p {
            font-size: 12px;
            color: #5a7f96;
        }

        /* Payment Methods */
        .payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .payment-methods img {
            height: 28px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .payment-methods img:hover {
            opacity: 1;
        }

        /* Footer Footer */
        .footer-footer {
            text-align: right;
            color: #5a7f96;
            font-size: 12px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-footer a {
            color: #5a7f96;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-footer a:hover {
            color: #2c5f7d;
        }

        @media (max-width: 1024px) {
            .footer-header {
                justify-content: center;
                text-align: center;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
            }

            .footer-footer {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 40px 20px 0;
            }

            .footer-header {
                flex-direction: column;
                margin-bottom: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-column h3 {
                font-size: 16px;
            }

            .footer-bottom {
                padding-bottom: 20px;
                margin-bottom: 15px;
            }

            .payment-methods {
                justify-content: center;
            }

            .trust-item {
                justify-content: center;
                text-align: center;
            }

            .footer-footer {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 30px 15px 0;
            }

            .footer-column h3 {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .footer-column ul li {
                margin-bottom: 10px;
            }

            .footer-column ul li a {
                font-size: 13px;
            }

            .social-links {
                gap: 15px;
            }

            .social-links a {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .trust-content h4 {
                font-size: 13px;
            }

            .trust-content p {
                font-size: 11px;
            }

            .payment-methods img {
                height: 24px;
            }
        }

        .footer-logo {
  height: 100px; 
  width: auto;
  display: block;
}


@media (max-width: 1024px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
    justify-content: center;
    text-align: center; 
  }

  .footer-column {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-header {
    justify-content: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}