
        .contact-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 40px;
            border-radius: 12px;
            font-family: Arial, sans-serif;
            max-width: 850px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .contact-section .phone-number {
            color: #7FB800;
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .contact-section .chat-link {
            color: #28a745;
            font-weight: bold;
            font-size: 1.5rem;
            text-decoration: none;
        }

        .contact-section .chat-link:hover {
            text-decoration: underline;
        }

        .contact-section i {
            font-size: 1.5rem;
            margin-right: 10px;
        }

        .contact-section span {
            font-size: 1.5rem;
        }

        /* Mobile responsiveness */
        @media (max-width: 991px) {
            .contact-section {
                flex-direction: column;
                text-align: center;
                padding: 15px 30px;
            }

            .contact-section .phone-number,
            .contact-section .chat-link,
            .contact-section span,
            .contact-section i {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 576px) {
            .contact-section {
                padding: 10px 20px;
            }

            .contact-section .phone-number,
            .contact-section .chat-link,
            .contact-section span,
            .contact-section i {
                font-size: 1.125rem;
            }
        }
