*{
    margin: 0;
    padding: 0;
}
/* How to Hero Section */
.how-to-hero {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
height: 300px;
display: flex;
align-items: center;
text-align: center;
color: var(--white);
margin-top: 70px;
}

.how-to-hero h1 {
font-size: 2.5rem;
margin-bottom: 15px;
text-align: center;
color: white;
}

.how-to-hero p {
font-size: 1.2rem;
text-align: center;
color: white;
}

/* Steps Section */
.steps-section {
padding: 80px 0;
}

.steps-timeline {
position: relative;
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
}

.steps-timeline::before {
content: '';
position: absolute;
top: 0;
left: 50px;
height: 100%;
width: 4px;
background-color: var(--primary-color);
z-index: 1;
}

.step {
position: relative;
margin-bottom: 50px;
z-index: 2;
}

.step-number {
position: absolute;
left: 0;
top: 0;
width: 50px;
height: 50px;
background-color: var(--primary-color);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: bold;
box-shadow: 0 4px 10px rgba(246, 139, 30, 0.3);
}

.step-content {
margin-left: 80px;
background-color: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.step:hover .step-content {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
font-size: 1.5rem;
color: var(--secondary-color);
margin-bottom: 15px;
}

.step-content p {
color: var(--light-text);
margin-bottom: 20px;
}

.step-image {
height: 200px;
border-radius: 6px;
overflow: hidden;
margin-top: 20px;
}

.step-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.step:hover .step-image img {
transform: scale(1.05);
}

/* Payment Methods */
.payment-methods {
padding: 80px 0;
background-color: var(--light-bg);
}

.methods-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}

.method {
background-color: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.method:hover {
transform: translateY(-10px);
}

.method-icon {
width: 70px;
height: 70px;
background-color: rgba(246, 139, 30, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: var(--primary-color);
font-size: 1.8rem;
}

.method h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--secondary-color);
}

.method p {
color: var(--light-text);
}

/* FAQ Section */
.faq-section {
padding: 80px 0;
}

.faq-accordion {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
margin-bottom: 15px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
background-color: var(--white);
padding: 20px 25px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: all 0.3s ease;
}

.faq-question h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--secondary-color);
}

.faq-question i {
color: var(--primary-color);
transition: transform 0.3s ease;
}

.faq-answer {
background-color: var(--white);
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-answer p {
padding: 0 25px 20px;
color: var(--light-text);
}

.faq-item.active .faq-question {
background-color: var(--primary-color);
}

.faq-item.active .faq-question h3 {
color: var(--white);
}

.faq-item.active .faq-question i {
color: var(--white);
transform: rotate(180deg);
}

.faq-item.active .faq-answer {
max-height: 200px;
}

/* How to CTA */
.how-to-cta {
padding: 80px 0;
text-align: center;
background: linear-gradient(rgba(246, 139, 30, 0.9), rgba(246, 139, 30, 0.9)), url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
color: var(--white);
}

.how-to-cta h2 {
font-size: 2.2rem;
margin-bottom: 15px;
}

.how-to-cta p {
font-size: 1.2rem;
margin-bottom: 30px;
}

.cta-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.cta-btn {
background-color: var(--white);
color: var(--primary-color);
padding: 12px 30px;
border-radius: 4px;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.cta-btn.secondary {
background-color: transparent;
color: var(--white);
border: 2px solid var(--white);
}

.cta-btn:hover {
background-color: var(--secondary-color);
color: var(--white);
}

.cta-btn.secondary:hover {
background-color: var(--white);
color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
.methods-grid {
grid-template-columns: repeat(2, 1fr);
}

.cta-buttons {
flex-direction: column;
align-items: center;
}
}

@media (max-width: 768px) {
.steps-timeline::before {
left: 25px;
}

.step-number {
width: 40px;
height: 40px;
font-size: 1.2rem;
}

.step-content {
margin-left: 60px;
padding: 20px;
}

.step-image {
height: 150px;
}

.faq-question h3 {
font-size: 1rem;
}
}

@media (max-width: 576px) {
.how-to-hero h1 {
font-size: 2rem;
}

.how-to-hero p {
font-size: 1rem;
}

.methods-grid {
grid-template-columns: 1fr;
}

.step-content h3 {
font-size: 1.2rem;
}
}