.contact-grid {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.contact-response-time {
    font-size: min(0.8rem, 3.3vw);
    color: #aaa;
}
.hero-title {
    font-size: min(3rem, 7.7vw);
}
.hero-subtitle {
    font-size: min(1rem, 4.3vw);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.4s ease;

}
.rotate {
    transition: transform 0.3s ease;
}
.rotate.open {
    transform: rotate(90deg);
}
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}