
body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}
.carousel-slide {
    transition: opacity 0.5s ease-in-out;
}
.carousel-dot.active {
    background-color: #2F4964;
}
.whatsapp-float {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.fade-in {
    animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
html {
    scroll-behavior: smooth;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content.open {
    max-height: 500px;
}
.accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-icon.open {
    transform: rotate(180deg);
}