/* Global Variables */
:root {
    --primary-color: #13005A;
    --secondary-color: #00337C;
    --dark-color: #333333;
    --light-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Card Styles */
.card {
    background: var(--light-color);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* How It Works Steps Section */
.how-it-works-steps {
  background: #f8f9fa;
  padding: 6rem 0 6rem 0;
}
.how-it-works-steps .section-title.centered {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #5B3DF6;
  margin-bottom: 3rem;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: nowrap;
}
.step-block {
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  min-width: 220px;
  max-width: 340px;
  text-align: center;
  margin: 0 0.5rem;
}
.step-svg-number {
  margin-bottom: 1.2rem;
}
.step-svg-number svg text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  paint-order: stroke fill;
  stroke-linejoin: round;
  fill: #e6e6ff;
  stroke: #5B3DF6;
}
.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.step-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.step-arrow svg {
  display: block;
  width: 120px !important;
  height: 60px !important;
  stroke-width: 3.5 !important;
}
@media (max-width: 1100px) {
  .steps-row {
    gap: 2rem;
  }
  .step-block {
    width: 200px;
    min-width: 160px;
    max-width: 220px;
  }
}
@media (max-width: 900px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .step-arrow {
    margin: 0.5rem 0;
    transform: rotate(90deg);
  }
} 