* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #d3d4d6;
}

img {
  max-width: 100%;
}

header img {
  transition-duration: 0.3s;
  margin-bottom: 1rem;
  margin-top: 3rem;
  display: inline-block;
}

.image-link img {
  transition: transform 0.3s ease-in-out;
}

.image-link:hover img {
  transform: scale(1.1); /* Hover efekti */
}

.nav-menu {
  display: flex;
  justify-content: center;
  background-color: dimgray;
  padding: 12px;
  list-style: none;
  margin: 0;
  gap: 15px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  transition: 0.3s;
}

.nav-menu a:hover {
  background-color: #555;
  border-radius: 5px;
  transition-duration: 0.3s;
  opacity: 0.7;
}

/* İçerik Merkezi */
.content {
  text-align: center;
  margin: 20px;
  font-family: Verdana, sans-serif;
  color: #000066;
  font-weight: bold;
}

.content img {
  width: 1100px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 20px;
}

.content-text {
  display: flex;
  gap: 50px;
  margin-top: 1.5rem;
}

.content-button {
  display: inline-block;
  text-decoration: none;
  background-color: #000066;
  color: #d3d4d6;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 600;
  margin-top: 1rem;
}

.content-text-area {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.content-text a {
  display: inline;
  text-decoration: none;
  color: #000066;
  transition-duration: 1s;
}

.content-text a:hover {
  color: #000066 !important;
}
.content a:hover {
  transform: scale(1.1, 1.1);
  transition-duration: 0.3s;
  color: aliceblue;
}

footer nav {
  transition-duration: 0.3s;
  margin-bottom: 4rem;
}

.main-content {
    max-width: 1100px;
    margin: 0 auto;
    height: 430px;
}

.main-content p {
    font-weight: 650;
    text-align: justify;
    color: #000066;
    font-size: 17px;

}

.main-service {
    display: flex;
    gap: 10px;
    max-width: 1100px;
    height: 400px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-service a {  
    display: inline-block; 
    text-decoration: none;
    color: #000066;
    font-weight: 700;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: 1rem;
}

.main-service a:hover {
    color: #000066;
    transform: scale(1.1, 1.1);
     
}

.main-service div {
    flex: 1;
    max-width: 23%; 
    text-align: center;
}

.main-service img {
    width: 100%; /* Tüm resimleri aynı genişlikte yap */
    height: 230px; /* Sabit yükseklik vererek boyut eşitliğini sağla */
    object-fit: cover; /* Resimlerin orantısını bozmadan kırp */
    border-radius: 10px; 
}

.main-service img:hover {
    transform: scale(1.1, 1.1);
    transition: transform 0.3s ease, color 0.3s ease;
}