.card-section{
padding-top: 0.5rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-title.head {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.section-title.head h1 {
  /* font-family: "Playfair Display", "Merriweather", serif;  */
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem); 
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 30px;
}

.section-title.head p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title.head {
  animation: fadeUp 1s ease-in-out both;
}

.head .genericButton{
    background-color: #f18701;
    color:#000;
    border: solid black 3px;
}

.head .genericButton:hover{
  color: white;
  background-color: #000;
}

/* Step Cards */
.step-card {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background-image: linear-gradient(to bottom right, #FFCE00, #f18701);
    border: 1px solid #f18701;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #f18701;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f0 100%);
}

/* Highlighted payment step */
.step-card-highlight {
background-image: linear-gradient(to bottom right, #FFCE00, #f18701);    
border: 2px solid #f18701;
box-shadow: 0 8px 25px rgba(241, 135, 1, 0.15);
}

.step-card-highlight:hover {
    background: linear-gradient(135deg, #ffeee0 0%, #ffe4d0 100%);
    border-color: #e07600;
    box-shadow: 0 25px 50px rgba(241, 135, 1, 0.25);
}

/* Step Numbers */
.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #f18701;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    
    border: 1px solid #f18701;
}

.step-card:hover .step-number {
    background-color: #f18701;
    color: white;
    transform: scale(1.1);
}

.step-card-highlight .step-number {
    background-color: #f18701;
    color: white;
}

.step-card-highlight:hover .step-number {
    background-color: #e07600;
}

/* Step Icons */
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: wheat;
    border: 1px solid #f18701;
    color: #778795;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    border-color: #f18701;
    color: #f18701;
    background-color: #fff5f0;
    transform: scale(1.05);
}

.step-card-highlight .step-icon {
    background-color: #ffeee0;
    color: #f18701;
    border-color: #f18701;
}

/* Typography */
.step-title {
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Payment Badge */
.payment-badge {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    background-color: #ffeee0;
    color: #f18701;
    font-size: 0.75rem;
    font-weight: 500;
    gap: 0.25rem;
}

/* Curved Arrows */
.curved-arrow {
    width: 64px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dee2e6;
}

/* Bottom CTA */
.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background-image: linear-gradient(to bottom right, #FFCE00, #f18701);
    color: #6c757d;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 0.5rem;
    border: 1px solid #f18701;
}

.cta-badge:hover {
    background-color: #fff5f0;
    color: #f18701;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design - Mobile First */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .step-card {
        padding: 2.5rem 2rem;
    }
    
    .step-icon {
        width: 64px;
        height: 64px;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-subtitle {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .step-card {
        max-width: 240px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .step-card {
        max-width: 260px;
    }
    
    .curved-arrow {
        width: 80px;
        height: 40px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .step-card {
        padding: 3rem 2.5rem;
        max-width: 280px;
    }
}

