.partners {
    background: #ffffff;
    padding: 90px 20px;
}

.partners-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.partners-container h1 {
    font-size: 2.8rem;
    color: #1b5e20;
    margin-bottom: 20px;
}

/* INTRO TEXT */
.partners-intro {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* PARTNER LIST */
.partners-list {
    margin-top: 50px;
    display: grid;
    gap: 30px;
}

/* EACH ITEM */
.partner-item {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

/* ICON */
.partner-item i {
    font-size: 35px;
    color: #2e7d32;
    margin-bottom: 15px;
}

/* TITLE */
.partner-item h3 {
    color: #1b5e20;
    margin-bottom: 10px;
}

/* TEXT */
.partner-item p {
    color: #555;
    line-height: 1.7;
}

.partner-logos {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.logos-container {
    max-width: 1100px;
    margin: auto;
}

.logos-container h2 {
    font-size: 2.4rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.logos-intro {
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* GRID */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

/* LOGO BOX */
.logo-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.logo-item img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

/* OPTIONAL HOVER (SLIGHT ZOOM ONLY) */
.logo-item img:hover {
    transform: scale(1.08);
}

.remarks {
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.remarks-container {
    max-width: 1000px;
    margin: auto;
}

.remarks h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 20px;
}

/* INTRO */
.remarks-intro {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* POINTS */
.remarks-points {
    margin: 40px 0;
    display: grid;
    gap: 20px;
}

/* ITEM */
.remark-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f6f9f6;
    padding: 18px 20px;
    border-radius: 10px;
    text-align: left;
}

/* ICON */
.remark-item i {
    font-size: 22px;
    color: #2e7d32;
    margin-top: 3px;
}

/* TEXT */
.remark-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* CLOSING */
.remarks-closing {
    margin-top: 30px;
    color: #333;
    font-weight: 500;
    line-height: 1.8;
}


.partnership-opportunities {
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.opportunities-container {
    max-width: 1100px;
    margin: auto;
}

.opportunities-container h2 {
    font-size: 2.6rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

/* INTRO */
.opportunities-intro {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* GRID */
.opportunities-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* BOX */
.opportunity-box {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.opportunity-box:hover {
    transform: translateY(-6px);
}

/* ICON */
.opportunity-box i {
    font-size: 35px;
    color: #2e7d32;
    margin-bottom: 15px;
}

/* TITLE */
.opportunity-box h3 {
    color: #1b5e20;
    margin-bottom: 10px;
}

/* TEXT */
.opportunity-box p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* BUTTON */
.opportunities-btn {
    margin-top: 40px;
}

.opp-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #1b5e20;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.opp-btn:hover {
    background: #2e7d32;
    transform: scale(1.05);
}

.local-cbos {
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.cbos-container {
    max-width: 1100px;
    margin: auto;
}

.local-cbos h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 20px;
}

/* INTRO */
.cbos-intro {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ICON POINTS */
.cbos-points {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cbo-point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f6f9f6;
    padding: 15px 18px;
    border-radius: 10px;
    text-align: left;
}

.cbo-point i {
    color: #2e7d32;
    font-size: 22px;
}

.cbo-point p {
    margin: 0;
    color: #555;
}

/* GALLERY */
.cbos-gallery {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.cbos-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
}

.cbos-gallery img:hover {
    transform: scale(1.05);
}

/* CLOSING */
.cbos-closing {
    margin-top: 30px;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cbo-point {
        flex-direction: column;
        text-align: center;
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .remark-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .partner-item {
        text-align: center;
    }
}