/* Existing styles */
body {
  font-family: Arial, sans-serif;
}

header {
  margin-bottom: 60px;
}

main {
  padding-top: 20px;
}

section {
  margin-bottom: 40px;
}

h1, h2 {
  margin-bottom: 20px;
}

.card {
  margin-bottom: 20px;
}

footer img {
  margin: 0 10px;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  color: #ffc107;
}

.list-unstyled li {
  margin-bottom: 10px;
}

.list-unstyled img {
  margin-right: 10px;
}

.form-control, .btn {
  border-radius: 5px;
}

html {
  scroll-padding-top: 70px; /* Adjust according to the height of your fixed header */
}

/* Moved from index.html */
.social-media-content {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}
.social-media-item {
  margin-bottom: 20px;
}
.social-media-item h3 {
  margin-bottom: 15px;
}
.social-media-item img {
  margin-right: 10px;
}
.playstore-content {
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #e9f7ef;
  text-align: center;
}
.playstore-item img {
  margin-right: 10px;
  height: 50px;
  width: auto; /* Maintain aspect ratio */
}

/* New styles for layout */
.about-playstore-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-content, .playstore-content {
  flex: 1;
  margin: 10px;
  max-width: 48%;
}

@media (max-width: 768px) {
  .about-content, .playstore-content {
    max-width: 100%;
  }
}
