* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Montserrat', sans-serif; color: #333; }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
        .text-primary-pink { color: #E83B8E; }
        .bg-primary-pink { background-color: #E83B8E; }
        
        .contact-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .contact-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        
        .map-container iframe { border-radius: 12px; }
        
        .faq-item { border-bottom: 1px solid #e5e7eb; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-item.active .faq-answer { max-height: 500px; }
        
        input:focus, textarea:focus, select:focus { outline: none; ring: 2px; ring-color: #fce7f3; }
