.how-we-work {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.how-we-work h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.how-we-work p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.work-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.step {
    max-width: 200px;
    text-align: center;
    margin: 10px;
    position: relative;
}

.step img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.step p {
    font-size: 1em;
    color: #666;
}

/* Style for the zigzag dotted line */
.zigzag-line {
    width: 80px; /* Adjust length of the line */
    height: 1px;
    border-top: 2px dotted #ccc;
    position: relative;
}

/* Position alternating zigzag lines */
.zigzag-line:nth-child(odd) {
    transform: translateY(-20px) rotate(10deg); /* Move line up and tilt slightly */
}

.zigzag-line:nth-child(even) {
    transform: translateY(20px) rotate(-10deg); /* Move line down and tilt opposite */
}


/* Overall Container */
/* Container styling */
.why-choose-us {
    padding: 50px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}

.why-choose-us-content {
    display: flex;
    max-width: 1200px;
    gap: 20px;
}

/* Left Image Styling */
.choose-image img {
    width: 100%;
    max-width: 475px;
    border-radius: 10px;
    object-fit: cover;
}

/* Right Content Styling */
.choose-text {
    flex: 1;
    text-align: left;
}

.choose-text h2 {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.choose-text p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: #666;
}


.about-button {
    background-color: #fa9900 !important;
    
}

.about-us-home a{
    color:white;
}