/* Additional CSS for better image handling */
.screenshot-container {
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.screenshot-container img {
    max-height: 600px;
    width: auto;
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.screenshot-container.single-img {
    max-width: 350px;
    margin-left: 0px;
    margin-right: 0px;
}

.screenshot-container.double-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 30px;
}

.screenshot-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.screenshot-item img {
    width: 100%;
    height: auto;
}

.img-caption {
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

/* Ensure proper spacing between sections */
.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Improve typography spacing */
.feature-description {
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-description ul {
    padding-left: 20px;
}

.feature-description li {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshot-container {
        padding: 15px;
    }

    .screenshot-container.double-img {
        gap: 20px;
    }

    .screenshot-item {
        min-width: 100%;
    }

    .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
