body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.careers-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #f5f7fa;
}

.careers-text {
    max-width: 50%;
}

.careers-text h1 {
    font-size: 48px;
    color: #333;
}

.careers-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.careers-text a {
    display: inline-block;
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid #007bff;
}

.careers-text a:hover {
    color: #0056b3;
}

.careers-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    
}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

.values-section {
    background-color: #007bff;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.values-section h2 {
    text-transform: uppercase;
    font-size: 16px;
    color: #aad6ff;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex-basis: 30%;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #f0f8ff;
}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

.benefits-section {
    text-align: center;
    padding: 50px 0;
}

.benefits-section h2 {
    color: #007bff;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.benefits-section h3 {
    margin-top: 10px;
    font-size: 28px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
}

.benefit-item {
    flex-basis: calc(25% - 20px);
    text-align: center;
}

.benefit-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.benefit-item p {
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

@media (max-width: 768px) {
    .benefit-item {
        flex-basis: calc(50% - 20px);
    }
}





body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

.quote-section {
    background-color: #d9eaf5;
    padding: 50px 20px;
    text-align: center;
}

.quote-section p {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.quote-section span {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: normal;
    color: #555;
}