/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

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

.navbar {
  background: #007BFF;
  padding: 1rem 0;
  color: #fff;
}

.navbar .logo {
  float: left;
  font-size: 1.8rem;
  font-weight: bold;
}

.navbar nav {
  float: right;
}

.navbar nav ul {
  list-style: none;
}

.navbar nav ul li {
  display: inline-block;
  margin-left: 15px;
}

.navbar nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 3rem 0;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: bold;
}

.cta-buttons .btn-primary {
  background: #FFD700;
  color: #333;
}

.cta-buttons .btn-secondary {
  background: #fff;
  color: #007BFF;
}

.features {
  padding: 2rem 0;
  background: #f9f9f9;
}

.features .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.feature-cards {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: 1rem;
  color: #007BFF;
}

.card p {
  font-size: 1rem;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* App Distribution Section */
.app-distribution {
  margin: 3rem 0;
}

.app-distribution .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-distribution .left img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.app-distribution .right {
  padding: 1rem;
}

.app-distribution .right-banner {
  margin-bottom: 1rem;
}

.app-distribution .right-banner .title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007BFF;
  margin-bottom: 0.5rem;
}

.app-distribution .right-banner .subtitle {
  font-size: 1.2rem;
  color: #555;
}

.app-distribution .content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.app-distribution .homepage-production-system-point {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.app-distribution .homepage-production-system-point span {
  text-align: center;
  flex: 1;
}

.app-distribution .homepage-production-system-point img {
  max-width: 50px;
  margin-bottom: 0.5rem;
}

.app-distribution .homepage-production-system-point p {
  font-size: 0.9rem;
  color: #878F92;
}

.app-distribution .btn-green {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.app-distribution .btn-green:hover {
  background: #218838;
}
