.services-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

a {
    text-decoration: none;
}

.services-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.landing-main-btn {
    margin-top: 1em;
    display: flex;
    justify-content: center;
}

.landing-main-btn a {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    font-size: 1.15rem;
    font-weight: 600;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.landing-main-btn a:hover {
    background: #e35a00;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.22);
}

.about-section-box {
    width: 100%;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

.about-box {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 0;
    padding: 4rem;
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-text {
    text-align: left;
}

.about-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.2rem;
}

/* Gumb */
.about-btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-btn:hover {
    background: #e35a00;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.22);
}

.about-image {
    width: 100%;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

@media (max-width: 900px) {
    .about-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-image img {
        margin-top: 2rem;
        height: 260px;
        object-fit: contain;
        border-radius: 0;
    }
}

.brand-logos {
    width: 100%;
    padding: 8rem 0 0 0;
    display: flex;
    justify-content: center;
    background: transparent;
    align-items: center;
}

.brand-logos-inner {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: opacity .3s ease, filter .3s ease;
}

.brand-logos-inner:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-logos-inner img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    transform: translateX(20px);
}

@media (max-width: 768px) {
  .brand-logos-inner img {
    transform: translateX(10px);
  }
}
