:root {
  --brand-primary: #0056b3;
  --brand-secondary: #2c3e50;
  --brand-accent: #e67e22;
  --text-body: #555;
  --bg-light: #f8f9fa;
}

body {
  color: var(--text-body);
  font-size: 1.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-secondary);
  font-weight: 700;
}

h6 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lead {
  font-weight: 300;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Spacing & Utilities */
.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

.bg-light-gray {
  background-color: var(--bg-light);
}

.text-brand-primary {
  color: var(--brand-primary);
}

.fw-medium {
  font-weight: 500;
}

/* Hero Content Common */
.hero-content h1 {
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.hero-content p {
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
}

/* CTA Section */
.cta-minimal {
  background: var(--brand-secondary);
  color: white;
  padding: 140px 0;
  text-align: center;
  position: relative;
}

.cta-minimal h2 {
  color: white !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2.2rem !important;
}

.cta-minimal .lead {
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Universal Button Override */
body .btn-outline-brand,
body .btn-outline-brand-lg {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  color: var(--brand-accent) !important;
  border: 2px solid var(--brand-accent) !important;
  padding: 10px 30px !important;
  font-size: 1.1rem !important;
  border-radius: 0 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  text-decoration: none !important;
}

body .btn-outline-brand-lg {
  padding: 12px 35px !important;
}

body .btn-outline-brand:hover,
body .btn-outline-brand-lg:hover {
  background-color: var(--brand-accent) !important;
  color: white !important;
  border-color: var(--brand-accent) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.5) !important;
}

body .btn-outline-brand i,
body .btn-outline-brand-lg i {
  margin-left: 12px;
  transition: transform 0.3s ease;
  color: var(--brand-accent) !important;
}

body .btn-outline-brand:hover i,
body .btn-outline-brand-lg:hover i {
  transform: translateX(5px);
  color: white !important;
}

/* Process Horizontal Cards (Shared by About Us and Partners) */
.process-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid #eee;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-primary);
}

.process-icon,
.process-card i {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 25px;
  opacity: 0.8;
}

.process-step {
  color: var(--brand-accent);
  margin-bottom: 15px;
  display: block;
}

/* Full Width Banner (Shared by About Us and Partners) */
.full-width-banner {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9));
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
  padding: 140px 0;
  text-align: center;
}

.full-width-banner h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.full-width-banner p {
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto;
}
