/* Genel reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: #021f2f;
  color: #ddd;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  min-height: 100vh;
}

.container {
  width: 600px;
  background-color: #012b43;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-align: left;
}

/* Logo + Yazı birlikte */
.logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px auto;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.logo-caption {
  position: absolute;
  bottom: 0%; /* İstersen top: 50% ile ortalarsın */
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.6); /* tam yatay şerit */
  padding: 10px 0;
}

.btn-contact {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding: 10px 25px;
  background-color: #013a63;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.btn-contact:hover {
  background-color: #014a85;
  border-color: #1e90ff;
}

.service-group h1.section-title {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
  text-align: left;
}

.intro-text {
  margin-bottom: 15px;
  font-size: 16px;
  color: #ddd;
  text-align: left;
}

.service-group h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #bbe1fa;
  text-align: left;
}

.service-group ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 15px;
}

.service-group ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
  color: #ccc;
}

.service-group ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1e90ff;
  font-weight: bold;
}

/* Responsive - küçük ekranlarda container küçülebilir */
@media (max-width: 640px) {
  .container {
    width: 90%;
    padding: 20px;
  }

  .logo-wrapper {
    max-width: 300px;
  }

  .logo-caption {
    font-size: 15px;
    padding: 4px 10px;
  }
}
