main {
            padding-bottom: 120px; /* Add space at bottom to prevent footer overlap */
        }

        /* Footer Styles */
        #contact {
            background-color: #FFF0F5;
            padding: 40px 0;
            font-family: 'Arial', sans-serif;
            position: relative;
            z-index: 10;
            margin-top: auto; /* Push footer to bottom */
        }

        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
            background-color: #FFF0F5;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }

        .footer-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .footer-section h3 {
            color: #D87093;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer-section p {
            color: #8B5F65;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .footer-section a {
            display: block;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .footer-section:hover .social-icon {
            transform: scale(1.1);
        }

        #copyright {
            background-color: rgb(249, 199, 229);
            color: #8B5F65;
            text-align: center;
            padding: 20px 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 10;
        }

        #copyright .wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        @media (max-width: 768px) {
            .footer {
                flex-direction: column;
                align-items: center;
            }

            .footer-section {
                max-width: 100%;
            }
            
            main {
                padding-bottom: 200px; /* More space for mobile */
            }
        }

        /* Social icon container */
        .social-icon-container {
            margin: 0 auto;
            width: fit-content;
        }

        /* Hover effect for text links */
        .footer-section a:hover {
            color: #D87093;
        }
        
        /* Style for opening hours */
        .opening-hours {
            font-weight: bold;
            color: #D87093;
        }
        
        /* Ensure footer stays at bottom */
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* Make sure content expands */
        .content-wrap {
            flex: 1;
        }