.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tick {
	background-color: #fff;
}

.avpbkgr {
	background-color: #000;
}

.avpbkgr .feature-title {
	color: #c482d9;
}

.avpbkgr .feature-description {
	color: #fff;
}

.feature-row, .feature-row-hero, .feature-row-col {
  display: flex;
  flex-direction: column; /* Display rows vertically on all screens */
  width: 100%; /* Full width for all screens */
  padding: 10px;
}

.center {
	justify-content: center;
}

.feature-screenshot,
.feature-content {
  flex: 1;
  width: 100%; /* Full width for all screens */
}

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

.feature-content {
  padding: 20px;
}

.feature-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-description {
  color: #555;
}

.feature-row-hero .feature-content, .feature-title {
	margin: 0;
	padding: 0;
}

.ASButton {
	display: block;
}

.MASButton {
	display: none;
}

.newline {
	display: none;
}

.computer-only {
	display: none;
}

/* Media query for tablets and larger screens */
@media only screen and (min-width: 768px) {
  .feature-row {
	flex-direction: row;
	padding: 40px;
  }

  .feature-screenshot,
  .feature-content {
	width: 48%; /* Adjust the width as needed */
  }
  
  .universal {
	  width: 498px !important; 
	  height: 184px !important;
  }
}

/* Styles for devices with a minimum width of 1025 pixels (typically desktop computers) */
@media (pointer: fine) {
	.ASButton {
		display: none;
	}
	
	.MASButton {
		display: block;
	}
	
	.newline {
		display: block;
	}
	
	.computer-only {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.reverse {
	  flex-direction: column-reverse; /* Reverse the order for smaller screens */
	}
}

@media (prefers-color-scheme: dark) {
  body {
	background-color: #333; /* Dark background color */
	color: #eee; /* Dark text color */
  }

  .tick {
	  background-color: #222;
  }
  
  .avpbkgr {
	  background-color: #000;
  }
  
  p, h6, h4 {
	  color: #bbb;
  }
  
  .screens-more-features {
	  width: 100%;
	  background: url('/images/screens-more-bg-dark.jpg') no-repeat center center;
	  background-size: cover;
	  padding: 10px 0 40px;
  }
  
  h5 {
	  color: #eee;
  }
  
  .footer {
	  background: #111;
  }
  
  a {
	  color: #c482d9;
  }
}

h7 {
	font-size: small;
}