* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
        }

        /* Remove body padding on mobile devices */
        @media (max-width: 768px) {
            body {
                padding: 0 !important;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 0 !important;
            }
        }

        /* Footer Styles */
        .footer {
            background: #2d3748;
            color: white;
            padding: 25px 0 0;
            margin-top: 60px;
        }

        .footer-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 10px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
            gap: 20px;
            align-items: start;
        }

        /* Part 1: Company Info */
        .footer-company {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            display: inline-block;
            margin-bottom: 15px;
            text-decoration: none;
        }

        .footer-logo-image {
            height: 90px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
            /* background: white; */
            padding: 8px 12px;
            border-radius: 6px;
        }

        .footer-logo:hover .footer-logo-image {
            transform: scale(1.05);
        }

        .footer-address {
            color: white;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .footer-email {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: #48bb78;
            font-size: 15px;
            margin-bottom: 12px;
            text-decoration: none;
            font-weight: 400;
        }

        .footer-email i {
            font-size: 15px;
        }

        .footer-email:hover {
            color: #68d391;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .footer-social a.facebook {
            background: #1877f2;
            color: white;
        }

        .footer-social a.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
        }

        .footer-social a.youtube {
            background: #ff0000;
            color: white;
        }

        .footer-social a:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        /* Partner Logos positioned on left side - matching screenshot */
        .company-partners {
            position: absolute;
            left: 371px;
            bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            z-index: 10;
        }

        .partner-logo {
            width: 140px;
            height: 80px;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .partner-logo:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .partner-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 5px;
        }

        /* Placeholder logo styles - colorful gradients */
        .partner-logo.placeholder {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-weight: bold;
            font-size: 9px;
            text-align: center;
            padding: 5px;
        }

        .partner-logo.placeholder:nth-child(2) {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .partner-logo.placeholder:nth-child(3) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .partner-logo.placeholder:nth-child(4) {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        /* Parts 2, 3, 4: Link Sections */
        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-weight: 400;
        }

        .footer-links a {
            color: #e2e8f0;
            text-decoration: none !important;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: all 0.3s;
            font-weight: 400;
        }

        .footer-links a::before {
            content: '→';
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        /* Part 5: Newsletter */
        .footer-newsletter {
            display: flex;
            flex-direction: column;
        }

        .footer-newsletter h3 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-description {
            color: white;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 10px;
            font-weight: 400;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .newsletter-input {
            width: 100%;
            padding: 11px 14px;
            border: 1px solid #4a5568;
            background: transparent;
            border-radius: 5px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

        .newsletter-input::placeholder {
            color: #a0aec0;
        }

        .newsletter-input:focus {
            border-color: #48bb78;
        }

        .newsletter-btn {
            padding: 11px 20px;
            background: #48bb78;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: capitalize;
        }

        .newsletter-btn:hover {
            background: #38a169;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
        }

        /* Footer Bottom */
        /* .footer-bottom {
            background: #1a202c;
            padding: 12px 20px;
            text-align: center !important;
            border-top: 1px solid #4a5568;
            margin-top: 20px;
        } */

        .footer-bottom {
    background: #1a202c;
    padding: 12px 0;
    border-top: 1px solid #4a5568;
    margin-top: 10px;

    display: flex !important;
    justify-content: center !important;
    align-items: center;
    text-align: center;
}


        .footer-copyright {
            color: #cbd5e0;
            font-size: 14px;
            font-weight: 400;
        }

        .footer-copyright a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-copyright a:hover {
            color: #fbbf24;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
                gap: 35px;
            }

            .footer-newsletter {
                grid-column: 1 / -1;
                max-width: 400px;
            }

            /* Adjust partner logos position for medium screens */
            .company-partners {
                left: 280px;
                bottom: 100px;
            }
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .footer-company {
                grid-column: 1 / -1;
                grid-row: 1;
            }

            .footer-newsletter {
                grid-column: 1 / -1;
                max-width: 100%;
            }

            /* Move partner logos below company info on tablets */
            .company-partners {
                position: relative;
                left: 0;
                bottom: 0;
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 35px 0 0;
            }

            .footer-main {
                padding: 0 0 0;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                padding: 0 15px;
            }

            .footer-company {
                grid-column: 1 / -1;
                grid-row: 1;
            }

            .footer-logo-image {
                height: 50px;
            }

            /* 2x2 Grid for sections 2-5 on mobile */
            .footer-section:nth-child(2) {
                grid-column: 1;
                grid-row: 2;
            }

            .footer-section:nth-child(3) {
                grid-column: 2;
                grid-row: 2;
            }

            .footer-section:nth-child(4) {
                grid-column: 1;
                grid-row: 3;
            }

            .footer-newsletter {
                grid-column: 2;
                grid-row: 3;
            }

            .company-partners {
                position: relative;
                left: 0;
                bottom: 0;
                justify-content: flex-start;
                margin-top: 15px;
            }

            .partner-logo {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .footer-logo-image {
                height: 40px;
                padding: 6px 10px;
            }

            .footer-section h3,
            .footer-newsletter h3 {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .footer-links {
                gap: 8px;
            }

            .footer-links a {
                font-size: 14px;
            }

            .footer-address {
                font-size: 13px;
            }

            .footer-email {
                font-size: 13px;
            }

            .footer-social a {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .partner-logo {
                width: 45px;
                height: 45px;
            }

            .newsletter-description {
                font-size: 12px;
            }

            .newsletter-input,
            .newsletter-btn {
                font-size: 12px;
                padding: 10px 12px;
            }

            .footer-copyright {
                font-size: 12px;
                line-height: 1.6;
            }

            .footer-bottom {
                padding: 15px 0;
            }
        }
