:root {
  --primary-color: #1a1a1a;
  --accent-color: #d97706;
  /* Saffron/amber accent */
  --accent-blue: #2563eb;
  /* Link/brand blue */
  --text-color: #111827;
  --text-light: #f9fafb;
  --bg-light: #f9fafb;
  --bg-white: #fff;
  --border-color: #e5e7eb;
  --transition: all 0.3s ease;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--bg-white);
}

/* --- ADD THIS: Container for consistent padding --- */
.container-custom {
    width: 100%;
    max-width: 1280px; /* Sets a max width for very large screens */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; /* The 'margin' you wanted on the left */
    padding-right: 1.5rem; /* The 'margin' you wanted on the right */
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.text-body p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--accent-color);
  font-weight: 600;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-color), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-body p:not(:last-child) {
  margin-bottom: 1.5rem;
}
