.appstore-and-models {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
}

.appstore-and-models-container {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
}

.appstore-card, .models-card {
  flex: 1;
  padding: 30px 25px 0px 25px;
  border-radius: 16px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.appstore-card:hover, .models-card:hover {
  transform: translateY(-4px);
}

.models-card {
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.appstore-card h2, .models-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #262166;
  margin: 0 0 5px 0;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.appstore-card p, .models-card p {
  font-family: 'Garet', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0%;
  color: #4C408B;
  margin: 0 0 5px 0;
  flex: 1;
}

.appstore-button, .models-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.appstore-button {
  background: #E8D4FF;
  color: #524EC4;
  border: 2px solid #E8D4FF;
}

.appstore-button:hover {
  background: rgba(232, 212, 255, 0.8);
  border-color: rgba(232, 212, 255, 0.8);
  transform: translateX(4px);
}

.models-button {
  background: #FFEC9D;
  color: #524EC4;
  border: 2px solid #FFEC9D;
}

.models-button:hover {
  background: rgba(255, 236, 157, 0.8);
  border-color: rgba(255, 236, 157, 0.8);
  transform: translateX(4px);
}

.appstore-button svg, .models-button svg {
  transition: transform 0.3s ease;
}

.appstore-button:hover svg, .models-button:hover svg {
  transform: translateX(2px);
}

.card-decorative-square {
  width: 100%;
  height: 120px;
  border-top: 10px solid;
  border-left: 10px solid;
  border-right: 10px solid;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 40px;
  align-self: flex-start;
}

.appstore-square {
  border-color: #E8D4FF;
}

.models-square {
  border-color: #FFEC9D;
}

@media (max-width: 768px) {
  .appstore-and-models {
    padding: 40px 20px;
  }
  
  .appstore-and-models-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .appstore-card, .models-card {
    min-height: 320px;
    padding: 25px 20px 0px 20px;
  }
  
  .appstore-card h2, .models-card h2 {
    font-size: 24px;
  }
  
  .appstore-card p, .models-card p {
    font-size: 15px;
  }
}