/* General container styling */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

/* Center align the Key Features title */
h1 {
    text-align: center;
}

/* Styling for each column */
.column {
    flex: 1 1 calc(50% - 20px); /* Two columns with equal width */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Styling for each feature */
.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--sidebar-background-color); /* Use sidebar background color */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Styling for the feature image */
.feature img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
}

/* Styling for the feature text */
.feature h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-color); /* Use theme-based text color */
    transition: color 0.3s ease;
}

.feature p {
    margin: 0;
    font-size: 0.95em;
    color: var(--text-color); /* Use theme-based text color */
    transition: color 0.3s ease;
}