/*==========================
Brand Hero
==========================*/

.brand-hero{
    padding:90px 20px;
    background:linear-gradient(135deg,#0C0238,#1b2b63);
    text-align:center;
    color:#fff;
}

.brand-hero img{
    width:130px;
    height:auto;
    margin-bottom:25px;
}

.brand-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.2;
}

.brand-intro{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    opacity:.95;
}


/*==========================
Common Sections
==========================*/

.brand-about,
.brand-why,
.brand-products,
.brand-faq{
    padding:80px 20px;
}

.brand-about h2,
.brand-why h2,
.brand-products h2,
.brand-faq h2{
    font-size:38px;
    text-align:center;
    margin-bottom:50px;
    color:#0C0238;
}

.brand-about{
    background:#fff;
}

.brand-about p{
    max-width:950px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#555;
}


/*==========================
Why Choose
==========================*/

.brand-why{
    background:#f8f9fc;
}

.brand-why ul{
    max-width:900px;
    margin:0 auto;
    padding-left:20px;
}

.brand-why li{
    margin-bottom:18px;
    font-size:18px;
    line-height:1.8;
}


/*==========================
Products
==========================*/

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:50px;
}

.brand-product-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:16px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.brand-product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.product-image{
    display:flex;
    justify-content:center;
    align-items:center;
    height:220px;
    margin-bottom:25px;
}

.product-image img{
    max-width:180px;
    max-height:180px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.product-title{
    font-size:32px;
    font-weight:700;
    line-height:1.25;
    margin:20px 0 15px;
}

.product-title a{
    color:#111;
    text-decoration:none;
}

.brand-btn{
    display:inline-block;
    padding:12px 30px;
    background:#0C0238;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.brand-btn:hover{
    background:#F26934;
}
/*==========================
FAQ
==========================*/

.brand-faq{
    background:#f8f9fc;
}

.faq-item{
    max-width:900px;
    margin:0 auto 20px;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.faq-title{
    margin:0;
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:22px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    text-align:left;
    color:#222;
}

.faq-question::after{
    content:"+";
    font-size:30px;
    color:#F26934;
    font-weight:600;
}

.faq-item.active .faq-question::after{
    content:"−";
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
    line-height:1.8;
    font-size:17px;
    color:#555;
}

.faq-item.active .faq-answer{
    display:block;
}


/*==========================
Responsive
==========================*/

@media(max-width:991px){

.products-grid{
    grid-template-columns:repeat(2,1fr);
}

.brand-hero h1{
    font-size:38px;
}

}

@media(max-width:768px){

.products-grid{
    grid-template-columns:1fr;
}

.brand-hero{
    padding:70px 20px;
}

.brand-hero h1{
    font-size:30px;
}

.brand-about,
.brand-why,
.brand-products,
.brand-faq{
    padding:60px 20px;
}

.brand-about h2,
.brand-why h2,
.brand-products h2,
.brand-faq h2{
    font-size:30px;
}

.faq-question{
    font-size:18px;
    padding:18px 20px;
}

.faq-answer{
    padding:0 20px 20px;
}

}