.sponsorship-section {
padding: 60px 0;
background: linear-gradient(135deg, #f8fcf8 0%, #ffffff 100%);
}
.sponsorship-title {
font-size: 42px;
color: #056735;
margin-bottom: 15px;
font-weight: 700;
}
.sponsorship-subtitle {
font-size: 20px;
color: #333;
margin-bottom: 25px;
font-weight: 500;
}
.short-desc p {
font-size: 16px;
line-height: 1.6;
color: #555;
margin-bottom: 15px;
}
.btn-read-more {
background: #056735;
color: #fff;
border: none;
padding: 12px 30px;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
margin: 15px 0;
}
.btn-read-more:hover {
background: #044d28;
transform: translateY(-2px);
}
.full-desc {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
}
.full-desc p {
font-size: 15px;
line-height: 1.6;
color: #555;
margin-bottom: 15px;
}
.full-desc h5 {
font-size: 18px;
color: #056735;
margin: 20px 0 10px;
font-weight: 600;
}
.sponsor-benefits {
list-style: none;
padding-left: 0;
}
.sponsor-benefits li {
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 10px;
font-size: 15px;
color: #555;
}
.sponsor-benefits li i {
color: #056735;
}
.highlight-text {
background: #e8f5e9;
padding: 15px;
border-radius: 10px;
font-weight: 500;
color: #056735;
}
.btn-sponsor-cta {
display: inline-block;
background: #f39c12;
color: #fff;
padding: 14px 25px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
margin-top: 15px;
}
.btn-sponsor-cta:hover {
background: #e67e22;
color: #fff;
transform: translateY(-2px);
} .sponsor-images-circle {
display: flex;
flex-direction: column;
gap: 25px;
}
.circle-image-row {
display: flex;
gap: 25px;
justify-content: center;
}
.circle-img {
width: 220px;
height: 220px;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
transition: transform 0.3s;
background: #f0f0f0;
}
.circle-img:hover {
transform: scale(1.05);
}
.circle-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
@media (max-width: 992px) {
.sponsorship-title { font-size: 36px; }
.circle-img { width: 180px; height: 180px; }
}
@media (max-width: 768px) {
.sponsorship-section { padding: 50px 0; }
.sponsorship-title { font-size: 28px; text-align: center; }
.sponsorship-subtitle { font-size: 18px; text-align: center; }
.sponsor-images-circle { margin-top: 30px; }
.circle-img { width: 140px; height: 140px; }
.circle-image-row { gap: 15px; }
}
@media (max-width: 480px) {
.circle-img { width: 120px; height: 120px; }
}