* {
  box-sizing: border-box;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
}

@font-face {
  font-family: 'mon';
  src: url('/fonts/Montserrat-Thin.ttf');
}
@font-face {
  font-family: 'monm';
  src: url('/fonts/Montserrat-Medium.ttf');
}
@font-face {
  font-family: 'lii';
  src: url('/fonts/LibreBaskerville-Italic.ttf');
}
@font-face {
  font-family: 'lib';
  src: url('/fonts/LibreBaskerville-Bold.ttf');
}
@font-face {
  font-family: 'geor';
  src: url('/fonts/georgiaz.ttf');
}
@font-face {
  font-family: 'garv';
  src: url('/fonts/Sarkowik.ttf');
}

body, html {
  margin: 0;
  height: 100%;
  color: #112A5C;
  background: white;
}

#beyaz {
  width: 90px;
}

.clsod {
  font-weight: 900;
  font-size: 70px;
  text-align: center;
}

@media (max-width: 576px) {
  .clsod {
    font-size: 25px;
    padding: 2rem 1rem;
  }
}

.application-section {
  padding: 4rem 2rem;
  text-align: center;
}

.applications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.application-card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;

  height: 380px;
  width: 280px;
  padding: 1.5rem;

  background: white;
  border: 2px solid #112A5C;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  text-align: center;
}

.dt{
  color: #112A5C;
  font-weight: 600;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* space out heading and button */
  height: 100%;
}



.application-card:hover {
  transform: translateY(-5px);
}

.application-card h2 {
  font-family: 'monm', sans-serif;
  font-size: 1.5rem;
  margin-bottom: auto;
  min-height: 50px; /* consistent heading height */
}
.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1rem 0;
}


.apply-button {
  margin-top: auto;
  padding: 0.6rem 1.2rem;
  background-color: rgb(40, 40, 40);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: not-allowed !important;
}

.apply-button:hover {
  background-color: #1c1c1c;
}

@media (max-width: 768px) {
  .applications {
    flex-direction: column;
    align-items: center;
  }
}


.imp{
  font-weight:600;
  font-style:Italic;
  text-decoration-line: underline;
}

.un{
  text-decoration-line: underline;
}

.it{
  font-style:Italic;
}

.bga{
  font-style:Italic;
  font-weight:600;
}

.crit{
font-size:25px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #112A5C;
  margin: 0.5rem 0;
}


@media (max-width: 768px) {
  .applications {
    flex-direction: column;
    align-items: center;
  }

  .application-card {
    width: 90%;
    height: auto;
    padding: 1rem;
  }

  .card-image {
    height: auto;
    max-height: 200px;
  }

  .application-card h2 {
    font-size: 1.25rem;
  }

  .price {
    font-size: 1.1rem;
  }

  .apply-button {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }

  .crit {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .clsod {
    font-size: 2rem;
    padding: 1rem;
    margin-top: 80px;
  }
}

@media (max-width: 576px) {
  .application-section {
    padding: 2rem 1rem;
  }

  .card-image {
    border-radius: 6px;
    margin: 0.8rem 0;
  }

  .price {
    margin: 0.4rem 0;
  }
}
