/* Partners Page Styles */ .partners-page { background-color: #f8f9fa; } .partners-intro { max-width: 800px; margin: 0 auto; font-size: 16px; line-height: 1.7; color: #666; } .category-card { background: #fff; padding: 40px 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; height: 100%; } .category-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .category-card__icon { font-size: 50px; color: var(--insuba-base); margin-bottom: 20px; } .category-card__title { font-size: 20px; font-weight: 600; margin-bottom: 15px; color: #333; } .category-card__text { color: #666; line-height: 1.6; margin: 0; } .partner-card { background: #fff; padding: 30px 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; height: 100%; border: 1px solid #eaeaea; } .partner-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); border-color: var(--insuba-base); } .partner-card__logo { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .partner-card__logo img { max-width: 100%; max-height: 100%; filter: grayscale(100%); transition: filter 0.3s ease; } .partner-card:hover .partner-card__logo img { filter: grayscale(0%); } .partner-card__title { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: #333; } .partner-card .insuba-btn { margin-top: 10px; } .stat-item { padding: 20px; } .stat-item__number { font-size: 42px; font-weight: 700; color: var(--insuba-base); margin-bottom: 10px; line-height: 1; } .stat-item__label { font-size: 16px; color: #666; font-weight: 500; } /* Responsive adjustments */ @media (max-width: 768px) { .category-card { padding: 30px 20px; } .partner-card { padding: 25px 15px; } .stat-item__number { font-size: 36px; } }