/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Card Styling */
.card {
    border-radius: 8px;
    overflow: hidden;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-body {
    padding: 1.5rem;
}

/* Compatibility Section */
.compatibility-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1rem;
}

.compatibility-logos img {
    max-height: 100px;
    object-fit: contain;
}

/* White Shadow for Logo */
.shadow-white {
    filter: drop-shadow(6px 4px 2px white);
}

/* Floating Icons */
#floatingIcons {
    z-index: 1050;
}

#floatingIcons img {
    width: 50px;
    cursor: pointer;
    background-color: #fff; /* Temporary background for debugging */
    border-radius: 50%;
}

/* Pop-up Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.popup-content img {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Button Styles */
.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
}

.card-guarantee {
    border: none;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.guarantee-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}
.guarantee-text {
    font-size: 0.8rem;
}