.peyvandab-career-page {
    margin: 0 auto;
    padding: 2rem 1rem;
    background: #f8fafc;
    min-height: 100vh;
    direction:rtl;
}

.peyvandab-career-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 98, 171, 0.1);
    margin-top:50px;
}

.peyvandab-career-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0062ab;
    margin-bottom: 0.75rem;
}

.peyvandab-career-description {
    color: #64748b;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.peyvandab-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 0.5rem;
}

.peyvandab-section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
}

.peyvandab-benefits-section {
    margin-bottom: 3rem;
}

.peyvandab-benefits-grid {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));*/
    gap: 1.5rem;
    margin-top: 1.5rem;
        display: flex;
    align-items: stretch;
    justify-content: center;
    @media(max-width:768px){
    flex-wrap: wrap;
    }
}

.peyvandab-benefit-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 98, 171, 0.1);
    @media(max-width:768px){
    flex:unset;
        width: 100%;
    }
}

.peyvandab-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 98, 171, 0.1);
    border-color: rgba(0, 98, 171, 0.2);
}

.peyvandab-benefit-icon {
    margin-bottom: 1rem;
}

.peyvandab-benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.peyvandab-benefit-desc {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.peyvandab-jobs-section {
    margin-bottom: 3rem;
}

.peyvandab-jobs-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.peyvandab-job-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 98, 171, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.peyvandab-job-item:hover {
    border-color: rgba(0, 98, 171, 0.2);
}

.peyvandab-job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.3s ease;
}

.peyvandab-job-header:hover {
    background: rgba(0, 98, 171, 0.02);
}

.peyvandab-job-info {
    flex: 1;
}

.peyvandab-job-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0062ab;
    margin-bottom: 0.5rem;
}

.peyvandab-job-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.peyvandab-job-tag {
    background: rgba(0, 98, 171, 0.08);
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
}

.peyvandab-job-icon {
    transition: transform 0.3s ease;
}

.peyvandab-job-item.active .peyvandab-job-icon {
    transform: rotate(180deg);
}

.peyvandab-job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid transparent;
}

.peyvandab-job-item.active .peyvandab-job-content {
    max-height: 600px;
    border-top-color: rgba(0, 98, 171, 0.1);
}

.peyvandab-job-description {
    padding: 1.5rem;
}

.peyvandab-job-description h4 {
    color: #1e293b;
    font-size: 0.95rem;
    margin: 1rem 0 0.5rem;
    font-weight: 700;
}

.peyvandab-job-description h4:first-of-type {
    margin-top: 0;
}

.peyvandab-job-description p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.peyvandab-job-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.peyvandab-job-list li {
    padding-right: 1.25rem;
    position: relative;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.peyvandab-job-list li:before {
    content: '•';
    position: absolute;
    right: 0;
    color: #90c445;
    font-weight: bold;
}

.peyvandab-job-actions {
    margin-top: 1.25rem;
}

.peyvandab-apply-btn {
    background: #0062ab;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.peyvandab-apply-btn:hover {
    background: #90c445;
    transform: translateY(-2px);
}

.peyvandab-apply-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 98, 171, 0.1);
    box-shadow: 0 4px 20px rgba(0, 98, 171, 0.05);
}

.peyvandab-apply-form {
    max-width: 800px;
    margin: 0 auto;
}

.peyvandab-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.peyvandab-form-group {
    margin-bottom: 1rem;
}

.peyvandab-form-label {
    display: block;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.peyvandab-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 98, 171, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.peyvandab-form-control:focus {
    outline: none;
    border-color: #0062ab;
    box-shadow: 0 0 0 3px rgba(0, 98, 171, 0.1);
}

.peyvandab-textarea {
    resize: vertical;
    min-height: 100px;
}

.peyvandab-file-upload {
    position: relative;
}

.peyvandab-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    overflow: hidden;
}

.peyvandab-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px dashed rgba(0, 98, 171, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.peyvandab-file-label:hover {
    border-color: #0062ab;
    background: rgba(0, 98, 171, 0.02);
}

.peyvandab-file-label span {
    color: #64748b;
    font-size: 0.85rem;
}

.peyvandab-form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.peyvandab-submit-form-btn {
    background: linear-gradient(135deg, #0062ab 0%, #004a80 100%);
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.peyvandab-submit-form-btn:hover {
    background: linear-gradient(135deg, #004a80 0%, #0062ab 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 98, 171, 0.3);
}

.peyvandab-process-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 98, 171, 0.02) 0%, rgba(144, 196, 69, 0.02) 100%);
    border-radius: 20px;
}

.peyvandab-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.peyvandab-process-step {
    flex: 1;
    text-align: center;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 98, 171, 0.1);
}

.peyvandab-step-number {
    width: 40px;
    height: 40px;
    background: #0062ab;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.peyvandab-process-step h4 {
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.peyvandab-process-step p {
    color: #64748b;
    font-size: 0.8rem;
}

.peyvandab-process-arrow {
    color: #0062ab;
}

@media (max-width: 768px) {
    .peyvandab-career-title {
        font-size: 2rem;
    }
    
    .peyvandab-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .peyvandab-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .peyvandab-process-steps {
        flex-direction: column;
    }
    
    .peyvandab-process-arrow {
        transform: rotate(90deg);
    }
    
    .peyvandab-process-step {
        width: 100%;
    }
    
    .peyvandab-apply-section {
        padding: 1.5rem;
    }
    
    .peyvandab-job-tags {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .peyvandab-job-tag {
        display: inline-block;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .peyvandab-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .peyvandab-career-title {
        font-size: 1.75rem;
    }
    
    .peyvandab-section-title {
        font-size: 1.5rem;
    }
    
    .peyvandab-job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .peyvandab-job-icon {
        align-self: flex-end;
    }
}