 /* Custom CSS for the fixed button */
 .fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #000; /* Distinct border */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add shadow for better visibility */
}

.fixed-button:hover {
    background-color: #f8f9fa; /* Slight change on hover */
}

.fixed-button i {
    font-size: 1.5rem;
    color: #000; /* Icon color */
}

.feature p a {
    text-decoration: none;
    color: red !important;
}

.feature p a:hover {
    text-decoration: underline;
}
