
.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.address-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    margin-top: 60px;
}

.address-box h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.address-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.address-label {
    width: 150px;
    font-weight: 600;
    color: #475569;
}

.address-value {
    flex: 1;
    color: #1e293b;
}

.copy-btn {
    background: white;
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}





/** request page styles **/

.request-form-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.form-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
}

.item-row {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    position: relative;
}

.remove-item-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.1rem;
}

.add-item-btn {
    width: 100%;
    padding: 15px;
    background: white;
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 30px;
}

.add-item-btn:hover {
    background: #f1f5f9;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1e293b;
}