/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: white;
  line-height: 1.6;
}

a {
  color: #00bfff;
  text-decoration: none;
}

h1,
h2,
h3 {
  color: #ffffff;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff0000;
  font-size: 1.8rem;
  font-weight: bold;
}

.icon {
  height: 40px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff0000;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #000000, #1c1c3c);
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00bfff;
}

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

/* Tambahan untuk feature cards */
.feature-card {
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}

.btn {
  background-color: #ff0000;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #cc0000;
}

/* Sections */
section {
  padding: 3rem 2rem;
  text-align: center;
}

.feature-grid,
.product-grid,
.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

.feature-card,
.product-card,
blockquote {
  background-color: #1a1a1a;
  border-left: 5px solid #00bfff;
  padding: 1.5rem;
  border-radius: 10px;
}

blockquote {
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  color: #888;
}

/* Contact */
.contact a {
  color: #00bfff;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

product-card {
    height: 400px; /* atur sesuai kebutuhan */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain; /* menjaga proporsi gambar */
    background-color: #fff; /* latar belakang putih */
    border: 2px solid #00bfff; /* garis biru */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 10px;
    display: block;
}

/* Innovate Section Styles */
.innovate-section {
  background: linear-gradient(135deg, #1281a7, #02305f);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.innovate-container {
  max-width: 800px;
  margin: 0 auto;
}

.innovate-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: white;
}

.innovate-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.innovate-btn {
  background-color: white;
  color: #033d77;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.innovate-btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Left Content Section */
.left-content-section {
  background-color: #1a1a1a;
  padding: 3rem 0;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

/* FAQ Section */
.faq-section h1, 
.about-section h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 2px solid #00bfff;
  padding-bottom: 10px;
}

.faq-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 10px 0;
  color: #00bfff;
}

.faq-section p, 
.about-section p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #cccccc;
}

.divider {
  height: 1px;
  background-color: #333333;
  margin: 30px 0;
}

.about-section {
  margin-top: 30px;
}

.about-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.about-section li {
  margin-bottom: 8px;
  color: #cccccc;
}

.about-section li strong {
  color: #00bfff;
}

.about-section li:before {
  content: "•";
  color: #00bfff;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}