body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .footer-section {
            background-color: #0a2540;
            color: white;
            padding: 50px 0 30px 0;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .footer-logo img{
            width:300px
        }

        .right-content h4 {
            font-family: 'libre baskerville', serif;
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .radio-icon {
            font-size: 48px;
            color: white;
        }

        .logo-text h1 {
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .logo-text .subtitle {
            font-size: 14px;
            margin: 0;
            border-top: 2px solid white;
            padding-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 16px;
            margin-top: 10px;
            font-weight: 300;
            font-family: 'montserrat', sans-serif;
        }

        .connect-section {
            font-family: 'montserrat', sans-serif;
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            justify-content: flex-end;
        }

        .social-icons a {
            background-color: #C29B40;
            color: #0a2540;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            text-decoration: none;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: #e0e0e0;
            transform: translateY(-2px);
        }

        .phone-number {
            font-family: 'montserrat', sans-serif;
            font-size: 20px;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: flex-end;
        }

        .phone-number i {
            font-size: 18px;
        }

        .copyright {
            text-align: center;
            font-size: 14px;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-content .main-navigation a {
            padding-right: 0px;
        }

        /* Desktop - max-width 1440px */
        @media (min-width: 992px) {
            .footer-content {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
            }

            .left-content {
                text-align: left;
            }

            .right-content {
                text-align: right;
            }

            .social-icons {
                justify-content: flex-end;
            }

            .phone-number {
                justify-content: flex-end;
            }
        }

        /* Tablet - max-width 991px */
        @media (max-width: 991px) {
            .footer-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .left-content,
            .right-content {
                width: 100%;
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
            }

            .right-content {
                margin-top: 30px;
            }

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

            .phone-number {
                justify-content: center;
            }
        }

        /* Phone - max-width 576px */
        @media (max-width: 576px) {
            .footer-section {
                padding: 30px 0 20px 0;
            }

            .logo-text h1 {
                font-size: 18px;
            }

            .logo-text .subtitle {
                font-size: 12px;
            }

            .tagline {
                font-size: 14px;
            }

            .phone-number {
                font-size: 22px;
            }

            .social-icons a {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .copyright {
                font-size: 12px;
                margin-top: 30px;
            }
        }