@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
}

.prose {
    line-height: 1.75;
}

.prose p {
    margin-bottom: 1rem;
}

.border-primary {
    border-color: #1a365d;
}

.border-secondary {
    border-color: #ecc94b;
}
.hover\:text-secondary:hover {
    color: #ecc94b;
}

img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

.relative:hover img {
    transform: scale(1.01);
}

.flex.items-center:hover img {
    transform: rotate(-5deg);
}
