:root {
            --clinic-color: #6d3c5e;
            --background-soft-cream: #F7F4F6; /* A softer, less yellow cream */
            --text-light: #212529; /* Changed to dark for contrast */
            --text-muted: #6c757d;
        }


        .footer {
            background-color: var(--background-soft-cream);
            color: var(--text-light);
            font-family: 'Lato', sans-serif; /* Set the font to Lato */
            padding-top: 3rem;
            padding-bottom: 1rem;
            font-weight: 400; /* Set the font back to normal weight */
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1); /* top shadow */
            z-index: 2;
        }
        
        /* Top section layout adjustments */
        .footer-main-section {
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--clinic-color);
        }

        /* Logo and contact info */
        .logo-section img {
            max-width: 200px;
            height: auto;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin: 0;
            font-size: 1.1rem; /* Increased font size */
            line-height: 1.5;
        }

        /* Contact Us section styles */
        .contact-us-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-us-container h5 {
            font-size: 2.0rem; /* Increased font size */
            margin-bottom: 0.5rem;
            color: var(--clinic-color); /* Changed to clinic color */
            font-weight: bold; /* Made the heading bolder */
            font-family: 'Lobster', cursive; /* Applied Lobster font */
            text-decoration: underline; /* Added underline */
        }
        
        .contact-us-container p {
            margin: 0;
            font-size: 1.1rem; /* Increased font size */
            line-height: 1.5;
            text-align: center;
        }

        /* Hours heading style */
        .hours-heading {
            font-size: 2.0rem;
            margin-bottom: 0.5rem;
            color: var(--clinic-color);
            font-weight: bold;
            font-family: 'Lobster', cursive;
            text-decoration: underline;
        }

        /* Hours list */
        .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 1.1rem; /* Increased font size */
            line-height: 1.5;
        }

        /* Social icons and divider */
        .social-icons-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem; /* Added margin to separate from logo */
        }

        .social-icon {
            font-size: 2.25rem; /* Increased font size for social icons */
            margin: 0 0.75rem;
            transition: color 0.3s ease;
        }
        
        /* Specific colors for each social icon */
        .social-icon.facebook { color: #3b5998; }
        .social-icon.google { color: #db4437; }
        .social-icon.yelp { color: #af0e0e; }
        .social-icon.instagram { color: #E1306C; }
        
        .social-icon:hover {
            opacity: 0.8;
        }
        
        /* Bottom copyright and links section */
        .footer-bottom-bar {
            border-top: 1px solid var(--clinic-color); /* Adjusted border to match clinic color */
            padding-top: 1rem;
        }
        
        .footer-bottom-bar .eyecarepro-logo {
            max-width: 100px;
        }
        
        .footer-bottom-bar .bottom-links {
            display: flex;
            justify-content: center; /* Centered the links */
            flex-wrap: wrap;
        }
        
        .footer-bottom-bar .bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            margin: 0 0.5rem; /* Adjusted margin for centering */
            font-size: 0.9rem;
        }

        .footer-bottom-bar .bottom-links a:hover {
            color: var(--text-light);
        }

        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .logo-section, .contact-us-container, .hours-list-container {
                text-align: center;
            }
            .contact-us-container {
                margin: 1.5rem 0;
            }
            .hours-list {
                margin-top: 1.5rem;
            }
            .footer-bottom-bar {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom-bar .bottom-links {
                justify-content: center;
                margin-top: 1rem;
            }
        }