/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text */
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 10px 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* Dark gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #bb86fc; /* Purple accent */
  color: #121212;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: #3700b3; /* Darker purple */
  color: #fff;
}

/* Features Section */
#features {
  padding: 80px 0;
  background: #1e1e1e; /* Darker background */
  text-align: center;
}

#features h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #bb86fc; /* Purple accent */
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #2c2c2c; /* Dark card background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #bb86fc; /* Purple accent */
}

.feature-card p {
  font-size: 1rem;
  color: #b0b0b0; /* Light gray text */
}

/* Screenshots Carousel Section */
#screenshots {
  padding: 80px 0;
  text-align: center;
  background: #1e1e1e; /* Darker background */
}

#screenshots h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #bb86fc; /* Purple accent */
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center; /* Center images horizontally */
  align-items: center; /* Center images vertically */
}

.carousel-item img {
  width: 200px; /* Fixed width for smaller images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background: #2c2c2c; /* Darker background */
  text-align: center;
}

#faq h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #bb86fc; /* Purple accent */
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-card {
  background: #1e1e1e; /* Dark card background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.faq-card:hover {
  transform: translateY(-10px);
}

.faq-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #bb86fc; /* Purple accent */
}

.faq-card p {
  font-size: 1rem;
  color: #b0b0b0; /* Light gray text */
}

/* Privacy Policy Section */
#privacy {
  padding: 80px 0;
  background: #1e1e1e; /* Darker background */
  text-align: left;
}

#privacy h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #bb86fc; /* Purple accent */
}

#privacy h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #bb86fc; /* Purple accent */
}

#privacy p {
  font-size: 1rem;
  color: #b0b0b0; /* Light gray text */
}

/* Footer */
footer {
  background: #121212; /* Dark background */
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}