.why-choose-us-section {
padding: 80px 20px;
background-color: #f9fafb;
}
.why-choose-us-section .container {
max-width: 1200px;
margin: 0 auto;
}
.why-header {
text-align: center;
margin-bottom: 50px;
}
.why-title {
font-size: 2.2rem;
color: #222;
font-weight: 700;
margin-bottom: 10px;
}
.why-subtitle {
color: #555;
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}
.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.why-item {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
padding: 30px 25px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-item:hover {
transform: translateY(-5px);
box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.why-item-title {
font-size: 1.25rem;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 10px;
}
.why-item-text {
color: #555;
line-height: 1.6;
font-size: 1rem;
} @media (max-width: 768px) {
.why-title {
font-size: 1.8rem;
}
.why-grid {
gap: 20px;
}
.why-item {
padding: 25px 20px;
}
}
@media (max-width: 480px) {
.why-subtitle {
font-size: 1rem;
}
.why-item-title {
font-size: 1.1rem;
}
.why-item-text {
font-size: 0.95rem;
}
}