.why-us-section {
    padding: 60px 5%;
    background: #ffffff;
}

.why-us-container {
    max-width: 1400px;
    margin: auto;
}

.section-tag {
    display: inline-block;
    color: #b72716;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.why-content {
    display: flex;
    align-items: center; /* vertically centers image with text */
    justify-content: space-between;
    gap: 40px;
}

.why-text {
    flex: 1;
}

.why-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.why-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* optional */
}

.why-content h2 {
    font-size: 3.5rem;
    color: #30261b;
    margin-bottom: 25px;
}

.intro {
    font-size: 1.2rem;
    color: #6e655c;
    line-height: 1.8;
    margin-bottom: 40px;
}

.value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check {
    color: #b72716;
    font-size: 1.2rem;
    font-weight: 700;
}

.value-item p {
    color: #30261b;
    font-weight: 500;
}

.process-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #f7f4ef;
    border: 1px solid #e8dfd3;
    border-radius: 24px;
    padding: 40px;
    transition: .3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(186, 33, 17,.5);
    margin-bottom: 20px;
}

.process-card h3 {
    color: #30261b;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.process-card p {
    color: #6e655c;
    line-height: 1.8;
}

.specialists-section {
    background: #30261b;
    color: white;
    padding: 120px 5%;
}

.specialists-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.specialists-content h2 {
    font-size: 3rem;
    margin: 20px 0;
}

.specialists-content p {
    color: rgba(255,255,255,.8);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.specialists-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 32px;
    background: #b72716;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

.specialists-btn:hover {
    background: #9e2213;
}

@media (max-width: 900px) {

    .value-list {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .why-content h2,
    .specialists-content h2 {
        font-size: 2.5rem;
    }
}