 .footer {
            background-color: #0C3F32;
            color: #ffffff;
            padding: 3rem 0 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        /* Logo Section */
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width:300px;
        }
        .footer-logo img{width:100%;}

        .logo-image {
            width: 180px;
            height: auto;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 15px;
        }

        .tagline {
            color: #b8d4cd;
            font-size: 0.85rem;
            line-height: 1.4;
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Section Headers */
        .footer-section h3 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Office Information */
        .office-info {
            color: #b8d4cd;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .office-info p {
            margin-bottom:5px;
        }

        .office-address {
            margin-bottom: 1.2rem;
        }

        .phone-info {
            font-weight: 500;
        }

        /* Social Media Links */
        .social-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: transparent;
            color: #b8d4cd;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Footer Bottom */
        .footer-bottom {
            background-color: #000000;
            padding: 1rem 0;
            margin: 0 -2rem;
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.8rem;
            color: #888;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-links span {
            color: #444;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 0 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: left;
            }

            .logo-image {
                width: 160px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer-links {
                justify-content: center;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 2rem 0 0;
            }

            .logo-image {
                width: 140px;
            }

            .footer-section h3 {
                font-size: 1rem;
            }

            .office-info {
                font-size: 0.85rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 0.8rem;
            }

            .footer-bottom-container {
                padding: 0 1rem;
            }
        }