        .foot-container {
            background: linear-gradient(135deg, #2d8a6b 0%, #06d85ee6 100%);
            color: #fff;
            padding: 0;
        }

        .foot-newsletter {
            background: rgba(0, 0, 0, 0.15);
            padding: 40px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .foot-newsletter-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .foot-newsletter-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .foot-newsletter-icon {
            width: 50px;
            height: 50px;
            background: #e2cc07;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d8a6b;
            font-size: 24px;
            flex-shrink: 0;
        }

        .foot-newsletter-text h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #fff;
        }

        .foot-newsletter-text p {
            font-size: 16px;
            color: #fff;
            font-weight: 400;
            opacity: 0.8;
        }

        .foot-newsletter-form {
            display: flex;
            gap: 0;
            max-width: 400px;
            width: 100%;
        }

        .foot-newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 16px;
            background: #fff;
            color: #2d8a6b;
            outline: none;
        }

        .foot-newsletter-input::placeholder {
            color: rgba(45, 138, 107, 0.6);
        }

        .foot-newsletter-btn {
            padding: 15px 20px;
            background: #e2cc07;
            border: none;
            border-radius: 0 8px 8px 0;
            color: #2d8a6b;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s ease;
            font-weight: 600;
        }

        .foot-newsletter-btn:hover {
            background: #c9b406;
        }

        .foot-main {
            padding: 60px 20px;
            background-color: #25785b;
        }

        .foot-main-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
            gap: 60px;
        }

        .foot-brand {
            display: flex;
            flex-direction: column;
        }

        .foot-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
        }

        .foot-logo-icon {
            width: 48px;
            height: 48px;
            background: #e2cc07;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d8a6b;
            font-size: 24px;
        }

        .foot-logo-text {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
        }

        .foot-logo-text .foot-highlight {
            color: #e2cc07;
        }

        .foot-tagline {
            font-size: 11px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: -5px;
            margin-left: 60px;
            opacity: 0.8;
        }

        .foot-description {
            font-size: 16px;
            line-height: 1.6;
            color: #fff;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .foot-contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .foot-phone-icon {
            width: 48px;
            height: 48px;
            background: #e2cc07;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d8a6b;
            font-size: 20px;
            flex-shrink: 0;
        }

        .foot-phone-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .foot-phone-number {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        .foot-section h3 {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 25px;
        }

        .foot-links {
            list-style: none;
        }

        .foot-links li {
            margin-bottom: 15px;
        }

        .foot-links a {
            color: #fbfbf8;
            text-decoration: none;
            font-size: 16px;
            font-weight: 450;
            transition: color 0.3s ease;
        }

        .foot-links a:hover {
            color: #ff6b35;
        }

        .foot-contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .foot-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .foot-detail-icon {
            width: 20px;
            height: 20px;
            color: #e2cc07;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .foot-detail-text {
            font-size: 16px;
            line-height: 1.5;
            color: #fff;
            opacity: 0.9;
        }

        .foot-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .foot-social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .foot-social-link:hover {
            background: #e2cc07;
            color: #2d8a6b;
            transform: translateY(-2px);
        }

        .foot-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .foot-copyright {
            font-size: 14px;
            color: #fff;
            opacity: 0.8;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .foot-newsletter-content {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }

            .foot-newsletter-left {
                justify-content: center;
            }

            .foot-newsletter-text h3 {
                font-size: 20px;
            }

            .foot-main-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .foot-logo-text {
                font-size: 28px;
            }

            .foot-tagline {
                margin-left: 56px;
            }

            .foot-contact-info {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .foot-newsletter-form {
                max-width: 100%;
            }

            .foot-newsletter-input {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .foot-newsletter {
                padding: 30px 15px;
            }

            .foot-main {
                padding: 40px 15px;
            }

            .foot-newsletter-text h3 {
                font-size: 18px;
            }

            .foot-newsletter-text p {
                font-size: 14px;
            }

            .foot-newsletter-input,
            .foot-newsletter-btn {
                padding: 12px 16px;
            }

            .foot-logo-text {
                font-size: 24px;
            }

            .foot-tagline {
                margin-left: 48px;
                font-size: 10px;
            }

            .foot-section h3 {
                font-size: 18px;
            }

            .foot-links a {
                font-size: 15px;
            }

            .foot-contact-info {
                padding: 15px;
            }

            .foot-social {
                justify-content: center;
            }
        }