.hero-step-one {
    padding: 120px 0;
    background: linear-gradient(135deg, #ff6e40, #ff3d00);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-step-one .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-step-one .hero-text {
    max-width: 600px;
}

.hero-step-one h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-step-one p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-step-one .btn {
    font-size: 18px;
    padding: 12px 30px;
    background-color: #fff;
    color: #ff3d00;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-step-one .btn:hover {
    background-color: #ff3d00;
    color: #fff;
}

.hero-step-one .hero-img {
    flex: 1;
    text-align: right;
}

.hero-step-one .hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}
