@font-face {
  font-family: 'Campton';
  src: url('../../assets/fonts/CamptonW05-Light.eot');
  src: url('../../assets/fonts/CamptonW05-Light.eot?#iefix') format('embedded-opentype'),
    url('../../assets/fonts/CamptonW05-Light.woff') format('woff'),
    url('../../assets/fonts/CamptonW05-Light.ttf') format('truetype'),
    url('../../assets/fonts/CamptonW05-Light.svg#CamptonW05-Light') format('svg');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Campton';
  src: url('../../assets/fonts/CamptonW05-Regular.eot');
  src: url('../../assets/fonts/CamptonW05-Regular.eot?#iefix') format('embedded-opentype'),
    url('../../assets/fonts/CamptonW05-Regular.woff') format('woff'),
    url('../../assets/fonts/CamptonW05-Regular.ttf') format('truetype'),
    url('../../assets/fonts/CamptonW05-Regular.svg#CamptonW05-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Campton';
  src: url('../../assets/fonts/CamptonW05-Medium.eot');
  src: url('../../assets/fonts/CamptonW05-Medium.eot?#iefix') format('embedded-opentype'),
    url('../../assets/fonts/CamptonW05-Medium.woff') format('woff'),
    url('../../assets/fonts/CamptonW05-Medium.ttf') format('truetype'),
    url('../../assets/fonts/CamptonW05-Medium.svg#CamptonW05-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Campton';
  src: url('../../assets/fonts/CamptonW05-Bold.eot');
  src: url('../../assets/fonts/CamptonW05-Bold.eot?#iefix') format('embedded-opentype'),
    url('../../assets/fonts/CamptonW05-Bold.woff') format('woff'),
    url('../../assets/fonts/CamptonW05-Bold.ttf') format('truetype'),
    url('../../assets/fonts/CamptonW05-Bold.svg#CamptonW05-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Campton', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f4f6;
  color: #333;
}

/* Header Stili */
.header {
  background-color: #dc0005;
  height: 96px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 20px;
  width: 185px;
  object-fit: contain;
}

/* Main Content */
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  min-height: calc(100vh - 96px - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.content-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

.content-title {
  font-family: 'Campton', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 27px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #202020;
  max-width: 600px;
}


/* Footer */
.footer {
  background-color: #f5f4f6;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-text {
  font-family: 'Campton', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: #5d5864;
  margin: 8px 0;
}

.footer-text a {
  color: #dc0005;
  text-decoration: underline;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}


/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .header {
    height: 80px;
    padding: 0 15px;
  }

  .logo img {
    height: 18px;
    width: 165px;
  }

  .main-container {
    padding: 15px;
  }

  .content-title {
    font-size: 22px;
  }

  .content-image {
    max-height: 300px;
  }

  .footer-icons {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .header {
    height: 70px;
    padding: 0 10px;
  }

  .logo img {
    height: 16px;
    width: 145px;
  }

  .main-container {
    padding: 10px;
    gap: 20px;
  }

  .content-title {
    font-size: 18px;
  }

  .content-image {
    max-height: 250px;
  }

  .footer-text {
    font-size: 12px;
  }

  .footer-icons {
    gap: 12px;
    margin-top: 15px;
  }
}