.strengths {
    padding: 80px 0;
    background: url('../../images/strengths-back.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.strengths::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.strengths-header,
.strengths-content {
    position: relative;
    z-index: 1;
}

.strengths-header {
    text-align: center;
    margin-bottom: 60px;
}

.strengths-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #0099B0;
    line-height: 1.5;
}

.strengths-title {
    font-size: 32px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #fff;
}

.strengths-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.strength-item {
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
    margin-bottom: 40px;
    position: relative;
}

.strength-item.reverse {
    flex-direction: row-reverse;
}

.strength-text {
    flex: 1;
    padding: 40px;
    position: relative;
}

.strength-number {
    position: absolute;
    left: 40px;
    top: 40px;
    font-size: 46px;
    color: #0099B0;
    font-weight: 700;
    line-height: 1;
    opacity: 0.6;
}

.strength-title-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.strength-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    padding-left: 80px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 1rem;
    color: #0099B0;
}

.strength-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 70px;
    width: 70px;
    height: 2px;
    background: #0099B0;
}

.strength-item.reverse .strength-title {
    padding-right: 0;
    padding-left: 80px;
}

.strength-description {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.strength-image {
    width: 45%;
    height: 280px;
}

.strength-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-image-first {
    width: 45%;
    height: 280px;
}

.strength-image-first img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -30px;
}

.strength-more {
    display: inline-block;
    padding: 10px 30px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    width: 230px;
}

.strength-more:hover {
    background: #222;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .strengths {
        padding: 40px 0;
    }

    .strength-item,
    .strength-item.reverse {
        flex-direction: column;
    }

    .strength-image {
        width: 100%;
        height: 180px;
        order: -1;
    }

    .strength-image-first {
        width: 100%;
        height: 180px;
        order: -1;
    }

    .strength-text {
        padding: 30px 20px;
    }

    .strength-number {
        font-size: 32px;
        left: 20px;
        top: 10px;
    }

    .strength-title {
        font-size: 24px;
        padding-left: 0;
        text-align: left;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .strength-title::after {
        left: 0;
        width: 50px;
    }

    .strength-item.reverse .strength-title {
        padding-right: 0;
        padding-left: 0
    }

    .strength-description {
        text-align: center;
        padding-left: 0;
        font-size: 14px;
        line-height: 1.8;
    }

    .strength-more {
        margin-left: 50px;
    }
}

@media (max-width: 390px) {
    .strengths-title {
        font-size: 22px;
        line-height: 1.6;
    }

    .strengths-subtitle {
        font-size: 13px;
    }

    .strength-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .strength-title::after {
        width: 40px;
    }

    .strength-description {
        font-size: 13px;
    }
}

.about-header {
    padding: 120px 0;
    background: #f8f8f8;
    text-align: center;
}

.about-header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #0099B0;
    line-height: 1.5;
    margin-bottom: 10px;
}

.about-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
} 