/* Styling for the feature list */
.feature-list ul {
    list-style: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    font-family: Arial, sans-serif; /* Clean font */
    font-size: 1rem; /* Adjust font size */
    color: #333; /* Dark grey text for list items */
    line-height: 1.8; /* Better spacing between lines */
}

.feature-list li {
    position: relative;
    padding-left: 35px; /* Space for the checkmark */
    margin-bottom: 10px; /* Space between list items */
}

.feature-list li::before {
    content: '\2714'; /* Unicode checkmark symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #0066cc; /* Blue color for the icon */
    font-size: 1.2rem; /* Slightly larger icon size */
}

/* Styling for the image container */
.col-lg-6 img {
    border-radius: 8px; /* Add rounded corners to the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}


.textblack{
    font-family: Arial, sans-serif; /* Apply a clean font */
    font-size: 1rem; /* Adjust text size */
    color: #333; /* Dark grey text color */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    padding-left: 30px; /* Space for the icon */
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
}
.back-button,
.nav-button {
    position: absolute;
    color: white;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
}

.back-button {
    top: 10px;
    left: 10px;
}

.nav-button {
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

/* Increase button size for better tap targets on mobile */
@media (max-width: 768px) {
    .back-button,
    .nav-button {
        font-size: 32px;
        padding: 15px;
    }
}
