.brand{width:80%;margin:50px auto;}
.brand img{width: 100%;}

.brand-company {
    width:80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 40px auto 0;
    text-align: left;
}

.brand-company > div {
    padding: 0 28px;
}

.brand-company > div + div {
    border-left: 1px solid #d9d9d9;
}

.brand-company h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #595757;
}

.brand-company > div > p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.8;
    color: #777575;
}

.brand-company > div > p:first-of-type {
    font-size: 12px;
    font-weight: 600;
    color: #595757;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .brand-company {
        grid-template-columns: 1fr;
    }

    .brand-company > div {
        padding: 18px 0;
    }

    .brand-company > div + div {
        border-left: none;
        border-top: 1px solid #d9d9d9;
    }
}

/* Products Section Styles */
.products {
    padding: 50px 0 40px;
    max-width: 950px;
    margin: 0 auto 40px;
}

.products-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.products-title {
    margin: 0;
    font-size: 28px;
    color: #235fa8;
    font-weight: 700;
}

.products-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-dots .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.products-dots .dot-1 {
    background-color: #235fa8;
}

.products-dots .dot-2 {
    background-color: #188a83;
}

.products-dots .dot-3 {
    background-color: #bf557b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-card {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.product-label {
    position: unset;
    left: 0;
    right: 0;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00625c;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
}

.product-text {
    padding: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #595757;
}

.product-card img {
    display: block;
    width: 100%;
    margin-top: 0;
    object-fit: cover;
}

.factory-section {
    color: #595757;
}

.factory-section img {
    width: 100%;
}

.factory-content h2{
    color:#595757;
}
.factory-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #595757;
    font-size: 18px;
}
.factory-content .sub{
    font-size: 16px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .brand{width:100%;margin:50px auto;}
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .products-title{font-size: 26px;}
    .factory-content p{font-size: 14px;}
    .factory-content .sub{
        font-size: 14px;
    }
    .product-mobile{
        display: inline-block;
        width: 49%;
        vertical-align: top;
    }
}