@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a202c;
    background-color: #f8f9fa;
}

.prose {
    line-height: 1.6;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose h2, .prose h3 {
    color: #1a202c;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.model-card {
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.price-tag {
    background-color: #F44336;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-block;
}

.contact-btn {
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #d32f2f;
}