:root {
    --primary-color: var(--primary-orange-color); /* Temanızdaki turuncu rengi buraya yazabilirsiniz */
    --dark-blue: #0F172A;
    --light-gray: #F8F9FA;
    --text-color: #4B5563;
}

.how-it-works-page body {
    font-family: 'Poppins', sans-serif;
}

.main-container {
    margin: 40px auto;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}



/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1504507533977-0a4b3f61ff36?q=80&w=1990&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 40px;
    text-align: left;
    height: 50vh;

}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-section p {
    font-size: 16px;
    max-width: 600px;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 50px 40px;
}
@media screen and (max-width:768px) {
    .main-container {
        margin: 20px auto;
        background-color: #fff;
        box-shadow:none;
        overflow: hidden;
        border: none;
    }
    .content-section {
        padding: 35px 10px 10px 10px;
    }

    .success-section {
        padding: 30px 20px !important;

    }




}



.content-section + .content-section {
    border-top: 1px solid #e2e8f0;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-right: 20px;
}

.step-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.step-content p, .step-content li {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

.bidding-option h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.bidding-option h5 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.bidding-option p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}

.success-section {
    background-color: #FFF7ED;
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

.success-icon {
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.success-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.success-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


.bid-form {
    background-color: #F1F5F9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}
.bid-top-content{
    min-height:180px;
}
.bid-now-prices {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.bid-now-prices span {
    background-color: white;
    border: 1px solid #E2E8F0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
}

.bid-now-prices span:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-bid {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.btn-bid:hover {
    background-color: #EAA800;
    color: white;
}

.max-price-input {
    position: relative;
}

.max-price-input .form-control {
    padding-left: 30px;
}

.max-price-input .currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}
