 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }
        /* Consistent accent styling */
        .accent-border {
            border-bottom: 4px solid #800000;
        }
        .image-card {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .image-card:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }