/* Models Section */
.models-section {
  padding: 8rem 4rem;
  background: #f8f8f8;
}

.models-container {
  max-width: 1400px;
  margin: 0 auto;
}

.models-header {
  text-align: center;
  margin-bottom: 6rem;
}

.models-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
}

.models-subtitle {
  font-size: 2rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.model-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.model-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.model-icon i {
  font-size: 3.5rem;
  color: #ffffff;
}

.model-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.model-description {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.model-features h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.model-features ul {
  list-style: none;
}

.model-features li {
  font-size: 1.5rem;
  color: #333333;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.model-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

/* Responsive Design for Models Section */
@media (max-width: 992px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .models-title {
    font-size: 3rem;
  }
  
  .models-subtitle {
    font-size: 1.8rem;
  }
  
  .models-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .models-section {
    padding: 4rem 2rem;
  }
  
  .models-title {
    font-size: 2.5rem;
  }
} 