body {
    font-family: 'Inter', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1546548970-71785318a17b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #198754; /* Bootstrap Success Green */
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin-right: 15px;
}