         .footer {
            background-color: var(--background-color-light); /* Soft light red */
            color: #4a4a4a;
            padding: 0px 0;
            padding-bottom: 0;
            border-top: 5px solid #b30000;
            font-family: 'Poppins', sans-serif;
        }
        .footer a {
            color: #b30000;
            text-decoration: none;
            transition: 0.3s;
            font-weight: 600;
        }
        .footer a:hover {
            text-decoration: underline;
            color: #800000;
        }
        .footer .footer-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
            text-transform: uppercase;
            color: #b30000;
        }
        .footer p, .footer ul {
            font-size: 16px;
            line-height: 1.6;
        }
        .footer .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #b30000;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: 0.3s;
            font-size: 18px;
        }
        .footer .social-icons a:hover {
            background: #800000;
        }
        .footer-bottom {
            background: #b30000;
            color: #fff;
            text-align: center;
            padding: 15px 0;
            font-size: 14px;
            margin-top: 20px;
        }
        .footer .description-box {
            background: #fff;
            border: 2px solid #b30000;
            padding: 10px 20px;
            margin: 20px auto;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 800px;
        }