/* Additional Responsive Styles */
@media screen and (max-width: 992px) {
  .screenshots-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .screenshot img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .plans-container,
  .market-container,
  .revenue-container,
  .goals-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .screenshots-slider {
    grid-template-columns: 1fr;
  }
  
  .team-container {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .terms-content {
    padding: 20px;
  }
}

@media screen and (max-width: 576px) {
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .feature-card,
  .service-card,
  .market-card,
  .revenue-card,
  .goal-card {
    padding: 15px;
  }
  
  .contact-form {
    padding: 20px;
  }
}

/* Additional Styling for Screenshots */
.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.screenshot {
  display: block;
  text-align: center;
}

.screenshot img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screenshot img:hover {
  transform: scale(1.05);
}

/* Team Section Styling */
.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--primary-light);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-member p {
  color: var(--dark-gray);
  font-weight: 500;
}

/* Market Analysis, Revenue Models, Growth Goals Styling */
.market-container,
.revenue-container,
.goals-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.market-card,
.revenue-card,
.goal-card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.market-card:hover,
.revenue-card:hover,
.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.market-card h3,
.revenue-card h3,
.goal-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.market-card ul,
.goal-card ul {
  padding-left: 20px;
}

.market-card li,
.goal-card li {
  margin-bottom: 10px;
}

/* Terms Page Styling */
.terms {
  padding: 80px 0;
}

.terms-content {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 30px 0 15px;
}

.terms-content h3:first-child {
  margin-top: 0;
}

.terms-content p,
.terms-content ul {
  margin-bottom: 15px;
}

.terms-content ul {
  padding-left: 20px;
}

.terms-content li {
  margin-bottom: 10px;
}

.terms-date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-style: italic;
  color: var(--dark-gray);
}

/* Service Image Styling */
.service-image,
.feature-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* App Download Section */
.app-download {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--secondary-color);
  padding: 80px 0;
  text-align: center;
}

/* Social Links in Contact Page */
.social-links {
  margin-top: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}
