:root {
    --primary-color: #0d6efd;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.nav-link {
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.links_ygwa {
    position: relative;
}

.links_ygwa p {
    color: #666;
    line-height: 26px;
}

.links_ygwa a {
    color: #939393;
    padding-left: 23px;
display: inline-block;
    line-height: 26px;
}

.links_ygwa a:before {
       position: absolute;
    top: 2px;
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url(../images/jh.png) no-repeat 0px -2px;
    background-size: 21px;
margin-left: -27px;
}


