.live-chat-container {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 9999;
}

.live-chat-container .btn-glassmorphism {
    background: rgba(37, 211, 101, 0.758); /* Light WhatsApp Green with opacity */
    color: white;
    font-size: 17px;
    border-radius: 50px; /* Rounded corners for a more modern look */
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    border: 1px solid rgba(37, 211, 102, 0.4); /* Border with a green tint */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for contrast */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.live-chat-container .btn-glassmorphism i {
    font-size: 30px; /* Increased icon size */
    margin-right: 10px; /* Maintain spacing between icon and text */
}

.live-chat-container .btn-glassmorphism:hover {
    background: rgba(37, 211, 102, 0.4); /* Darker green on hover for better contrast */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.live-chat-container .btn-glassmorphism:focus {
    outline: none;
}

.faq-section {
    background-color: #fff;
}

.faq-section .section-title {
    font-size: 14px;
    font-weight: bold;
    color: #000; /* Black for titles */
    text-transform: uppercase;
    display: inline-block;
    border: 2px solid #000;
    padding: 5px 15px;
    border-radius: 25px;
}

.faq-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
    color: #333;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #f8f8f8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    background: none;
}

.accordion-button {
    background: #fff;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    border: none;
    border-radius: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #000; /* Black background when expanded */
    color: #fff; /* White text when expanded */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.accordion-body {
    padding: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.social-media-section {
    background: linear-gradient(135deg, #f4f4f4, #eaeaea); /* Light gray gradient for distinction */
    padding: 50px 0;
}

.social-media-section .section-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000; /* Black for contrast */
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.social-media-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333; /* Darker text for better readability */
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.social-icon:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
