/* Custom styles for PASA.ID landing page */

.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(90deg, #e9f7ef 0%, #fff 100%);
}

.feature-icon, .service-icon, .contact-icon {
    font-size: 2.5rem;
}

.product-card img {
    height: 180px;
    object-fit: cover;
}

.service-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
}

footer .social-links a {
    font-size: 1.3rem;
    transition: color 0.2s;
}
footer .social-links a:hover {
    color: #28a745;
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 80px;
    }
} 