:root {
  /* Dari file 1 (diprioritaskan) */
  --primary-red: #cc0000;
  --primary-blue: #1d4ed8;
  --primary-blue-light: #0066cc;
  --primary-blue-lighter: #dbeafe;
  --primary-blue-lightest: #eff6ff;
  --secondary-blue: #eef2ff;
  --text-light: #dbeafe;
  --text-light-dark: #4b5563;
  --text-lighter: #bfdbfe;
  --text-dark: #111827;
  --text-gray: #4b5563;
  --text-gray-light: #6b7280;
  --text-gray-dark: #374151;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --border-color-dark: #d1d5db;
  --footer-bg: #111827;
  --footer-text: #9ca3af;

  /* Tambahan dari file 2 (tidak ada di file 1) */
  --text-medium: #374151;
  --text-extra-light: #6b7280;
  --bg-light-gray: #f9fafb;
  --green-bg: #dcfce7;
  --green-text: #166534;
  --green-active: #22c55e;
}

* {
  box-sizing: border-box; /* tambahan dari file 2 */
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

img {
  max-width: 100%;   /* tambahan dari file 2 */
  height: auto;
  display: block;
}

a {
  text-decoration: none; /* tambahan dari file 2 */
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p, ul, ol { /* tambahan dari file 2 */
  margin: 0;
  padding: 0;
}

ul {
  list-style: none; /* tambahan dari file 2 */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--bg-white);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-color-dark);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
}

.btn-link {
  background-color: transparent;
  color: var(--primary-red);
  padding: 0;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
