body
{
	margin: 0;
    font-family: "DM Sans", sans-serif;
}

/* Genel Link Stilleri */
a {
    text-decoration: none;
    color: inherit;
}

/* Menü Linkleri */
.nav-link {
    font-weight: bold;
    color: #333 !important;
    font-size: 17px;
}

.nav-link:hover {
    color: #1C39BB !important;
}

/* Hizmet Kartları */
.service-card {
    transition: transform 0.3s ease;
    border: none;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

/* Footer */
#footer {
    background-color: #333;
    color: #fff;
}

#footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
}

#footer ul li {
    margin-bottom: 10px;
}

#footer a {
    color: #fff;
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

/* Sayfa Başlıkları */
#page_baslik {
    background-color: #ebebeb;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
}

#page_baslik h1 {
    font-weight: bold;
    color: #333;
    margin: 0;
}