/* Style Sheet Headline For Buying Process Start Here */

/* Styling for the buying process section */
.c-title {
    text-align: center; 
    padding: 20px; 
    background-color: white; 
}

/* Styling for the H2 tag */
.c-title h2 {
    font-size: 24px; 
    margin: 10px 0; 
    color: #b78727; 
}

/* Styling for the H1 tag */
.c-title h1 {
    font-size: 17px; 
    margin: 20px 0 50px; 
    color: #b78727; 
}

/* Style Sheet Headline For Buying Process End Here */




/* Buying Process Style Sheet Head Line Code Start Here */

/* Styling for the buying process section */
.buying-process-title {
    text-align: center; 
    padding: 20px; 
    background-color:white; 
}

/* Styling for the H2 tag */
.buying-process-title h2 {
    font-size: 24px; 
    margin: 10px 0; 
    color: #b78727; 
}

hr {
    width: 60px;
    border: 2px solid #b78727;
    margin: auto;
}
/* Styling for the H1 tag */
.buying-process-title h1 {
    font-size: 18px; 
    margin: 20px 0 50px; 
    color: #b78727; 
}



/*Buying Process Style Sheet Head Line Code Ended Here*/


/*  Buying Process Page Style Sheet Started Here */

    /* Buying Process Styles */
    .buying-process-section {
      padding: 50px 0;
      background-color: white;
      
    }
    
    .buying-process-section h2 {
      text-align: center;
      font-size: 18px;
      margin-bottom: 40px;
      color: #b78727;
      font-family: 'Georgia', serif;
    }
    
    .buying-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 35px;
       
    }
    
    .buying-step {
      flex: 1 1 calc(33.333% - 20px); 
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      font-family: 'Georgia', serif;
    }
    
    .buying-step img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    
    .buying-step i {
      font-size: 30px;
      color: #007bff;
      margin-bottom: 15px;
    }
    
    .buying-step h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #b78727;
      font-family: 'Georgia', serif;
    }
    
    .buying-step p {
      font-size: 14px;
      color: #666;
      font-family: 'Georgia', serif;
      text-align: center;
    }
    
    @media (max-width: 768px) {
      .buying-step {
        flex: 1 1 calc(50% - 20px); 
      }
    }
    
    @media (max-width: 480px) {
      .buying-step {
        flex: 1 1 100%;
      }
    }
/*  Buying Process Page Style Sheet Ended Here */
