/* Genel Stiller */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Hero Bölümü */
#hero {
    background: linear-gradient(to right, #3B82F6, #60A5FA);
    padding: 60px 0;
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

#hero .lead {
    font-size: 1.25rem;
}

/* Hakkımızda Bölümü */
#hakkimizda {
    background-color: #f8f9fa;
}

#hakkimizda h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

#hakkimizda h3 {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #3B82F6;
}

#hakkimizda p, #hakkimizda ul {
    font-size: 1.1rem;
    color: #555;
}

#hakkimizda ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Hizmetler Kartları */
#hizmetler .card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#hizmetler .card:hover {
    transform: translateY(-10px);
}

/* İletişim Formu */
#iletisim .form-control:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
}

/* Footer Stilleri */
footer {
    background-color: #333;
    padding: 40px 0;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3B82F6;
}

footer h5 {
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

footer ul {
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer .bi {
    font-size: 24px;
}