.IconWrap {
    display: flex;
    justify-content: space-evenly;
    background: #cdcdcd;
    padding: 1em;
    border-radius: 1em;
    margin: 1em;
    flex-wrap: wrap;
}


.imageEditorWrap img {
    width:7em;
}

/* --- Styles for the Features Section --- */
.features-section {
    color: #fff; /* White text for contrast */
    padding: 60px 20px; /* Ample padding */
    text-align: center;
    margin-bottom: 30px; /* Space below this section */
}

.features-main-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 60px;
    color: #737373;
}

.features-grid-container {
    margin: 0em;
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 100%;
}

.features-grid-row {
    display: flex; /* Makes items within the row horizontal */
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: center; /* Centers items within their row */
    gap: 40px 60px; /* Vertical and horizontal gap between items */
    margin-bottom: 40px; /* Space between rows */
}

.features-grid-row:last-child {
    margin-bottom: 0; /* No bottom margin on the last row */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 15%;
    color: #ccc;
}

/* Icon above title (for Font Awesome) */
.feature-icon {
    font-size: 3.5em; /* Size for Font Awesome icons */
    color: #fff; /* White icon color */
    margin-bottom: 15px;
}

/* Icon above title (for Image URLs) */
.feature-icon-image {
    width: 60px; /* Size for image icons */
    height: 60px;
    object-fit: contain; /* Ensures image scales correctly */
    margin-bottom: 15px;
}

.feature-sentence {
    margin-top: 1em;
    font-size: .75em;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Adjustments for Features Section */
@media (max-width: 768px) {
    .features-section {
        padding: 40px 15px;
    }
    .features-main-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .features-grid-row {
        gap: 30px 40px;
        margin-bottom: 30px;
    }
    .feature-item {
        max-width: 45%; /* Allow 2 items per row */
        min-width: unset; /* Remove min-width constraint */
    }
    .feature-icon, .feature-icon-image {
        font-size: 3em;
        width: 50px;
        height: 50px;
    }
    .feature-title {
        font-size: 1.4em;
    }
    .feature-sentence {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 30px 10px;
    }
    .features-main-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .features-grid-row {
        flex-direction: column; /* Stack items vertically */
        gap: 20px;
        margin-bottom: 20px;
    }
    .feature-item {
        max-width: 90%; /* Take more width when stacked */
        width: 100%; /* Ensure full width */
        margin: 0 auto; /* Center individual items */
    }
}


/*Mobile Image Display*/
.MobilePageDisplay {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width:1200px){
.MobilePageDisplay {
    flex-wrap: wrap;
}
}

.infodisplay {
    width: 50%;
}
.infodisplayimage {
    width: 50%;
}

.infodisplayimage .imageEditorWrap {
    width: 15em;
    max-width: 100%;
    max-height: 100%;
    height: 18em;
}

.mobileImage{
    width:15em;
}

h3.feature-title {
    color: black;
    font-weight: 600;
}

ul li {
    width: 100%;
}

@media screen and (max-width:1200px){
.AppGoogle {
    width: 100%;
}
}

@media screen and (max-width:1200px){

.AppApple {
    width: 100%;
}
}

