:root {
  --tc-dark-blue: #1A3D7D;
  --tc-red: #E30A17;
  --tc-light-blue: #4A78B8;
  --tc-gray: #f8f9fa;
  --tc-dark-gray: #495057;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Üst Erişilebilirlik Çubuğu */
.accessibility-bar {
  background-color: #f8f9fa;
  padding: 5px 0;
  font-size: 12px;
  border-bottom: 1px solid #dee2e6;
}

.accessibility-bar a {
  color: #495057;
  text-decoration: none;
  margin-right: 20px;
  padding: 3px 8px;
}

.accessibility-bar a:hover {
  color: var(--tc-dark-blue);
  text-decoration: underline;
}

/* Resmi Header */
.tc-header {
  background-color: var(--tc-dark-blue);
  color: white;
  padding: 15px 0;
  border-bottom: 3px solid var(--tc-red);
}

.tc-logo {
  height: 70px;
  margin-right: 20px;
}

.tc-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}


    .info-card {
      display: flex;
      background-color: #f8f9fa;
      border: 1px solid #dee2e6;
      border-radius: 5px;
      overflow: hidden;
      height: 100%;
      transition: all 0.3s ease;
    }
    
    .info-card:hover {
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }
    
    .info-card-icon {
      background-color: var(--tc-dark-blue);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      font-size: 1.5rem;
    }
    
    .info-card-content {
      padding: 15px;
    }
    
    .info-card-content h4 {
      color: var(--tc-dark-blue);
      font-size: 1.1rem;
      margin-bottom: 10px;
    }
    
    .info-card-content p {
      margin-bottom: 0;
      font-size: 0.95rem;
    }
    
    .application-process {
      position: relative;
    }
    
    .application-process:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 22px;
      width: 3px;
      background-color: var(--tc-light-blue);
      z-index: 0;
    }
    
    .process-step {
      position: relative;
      display: flex;
      margin-bottom: 30px;
      z-index: 1;
    }
    
    .process-step:last-child {
      margin-bottom: 0;
    }
    
    .process-number {
      width: 45px;
      height: 45px;
      background-color: var(--tc-dark-blue);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
      margin-right: 20px;
      flex-shrink: 0;
    }
    
    .process-content {
      background-color: #f8f9fa;
      border: 1px solid #dee2e6;
      border-radius: 5px;
      padding: 15px 20px;
      flex-grow: 1;
    }
    
    .process-content h4 {
      color: var(--tc-dark-blue);
      margin-bottom: 10px;
      font-size: 1.1rem;
    }
    
    .process-content p {
      margin-bottom: 0;
    }
    
    .payment-option {
      background-color: #f8f9fa;
      border: 1px solid #dee2e6;
      border-radius: 5px;
      padding: 20px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    
    .payment-option:hover {
      background-color: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .payment-option h4 {
      color: var(--tc-dark-blue);
      font-size: 1.1rem;
      margin-bottom: 10px;
    }
    
    .payment-option i {
      margin-right: 8px;
    }
    
    .payment-option p {
      margin-bottom: 0;
      padding-left: 25px;
    }



    .package-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #dee2e6;
    }
    
    .package-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .package-price {
      color: var(--tc-dark-blue);
      font-weight: 600;
      font-size: 1.1rem;
      margin: 15px 0;
    }
    
    .package-features {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }
    
    .package-features li {
      padding: 8px 0;
      border-bottom: 1px dotted #dee2e6;
      position: relative;
      padding-left: 25px;
    }
    
    .package-features li:before {
      content: "✓";
      color: var(--tc-dark-blue);
      position: absolute;
      left: 0;
    }
    
    .package-features li:last-child {
      border-bottom: none;
    }
    
    .content-item {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 5px;
      height: 100%;
      border: 1px solid #dee2e6;
      transition: all 0.3s ease;
    }
    
    .content-item:hover {
      background-color: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .content-item i {
      font-size: 2rem;
      color: var(--tc-dark-blue);
      margin-bottom: 15px;
    }
    
    .content-item h5 {
      color: var(--tc-dark-blue);
      margin-bottom: 10px;
    }
    
    .testimonial-card {
      background-color: white;
      border: 1px solid #dee2e6;
      border-radius: 5px;
      padding: 20px;
      height: 100%;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .testimonial-content {
      margin-bottom: 15px;
      font-style: italic;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
    }



/* Başvuru Butonu */
.btn-apply {
  background-color: var(--tc-dark-blue);
  color: white;
  border: none;
  padding: 6px 12px;
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-apply:hover {
  background-color: var(--tc-light-blue);
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-apply i {
  margin-left: 8px;
}

/* Ana Menü */
.main-nav {
  background-color: var(--tc-light-blue);
}

.main-nav .nav-link {
  color: white;
  padding: 12px 20px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  background-color: var(--tc-dark-blue);
  color: white;
}

/* Mobil Menü */
.mobile-menu-bg, 
.mobile-menu-bg > div,
.mobile-nav,
#mobileMenu {
  background-color: var(--tc-dark-blue) !important;
}

.mobile-nav .nav-link {
  color: white;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  padding-left: 10px;
  border-radius: 3px;
}

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
}

/* Bilgi Slaytı */
.info-slider {
  background: linear-gradient(135deg, var(--tc-light-blue), var(--tc-dark-blue));
  color: white;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.info-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.slider-content {
  position: relative;
  z-index: 1;
}

.slide {
  display: none;
  text-align: center;
}

.slide.active {
  display: block;
}

.slide h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.slide p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.95;
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: white;
}

/* Ana İçerik */
.main-content {
  padding: 30px 0;
  background-color: #fff;
}

.content-section {
  background: white;
  border: 1px solid #dee2e6;
  margin-bottom: 20px;
  border-radius: 3px;
}

.section-header {
  background-color: var(--tc-gray);
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  color: var(--tc-dark-blue);
  margin: 0;
  font-size: 1.1rem;
}

.section-body {
  padding: 20px;
}

.important-notice {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-left: 4px solid #f39c12;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 3px;
}

.notice-title {
  color: #856404;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Bilgi Tablosu */
.info-table {
  width: 100%;
  margin-bottom: 20px;
}

.info-table th {
  background-color: var(--tc-gray);
  padding: 12px;
  font-weight: 600;
  border: 1px solid #dee2e6;
  color: var(--tc-dark-blue);
}

.info-table td {
  padding: 12px;
  border: 1px solid #dee2e6;
}

.info-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Duyuru Alanı */
.announcement-section {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 3px;
}

.announcement-header {
  background-color: var(--tc-gray);
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  color: var(--tc-dark-blue);
  font-size: 1.1rem;
}

.announcement-item {
  padding: 15px 20px;
  border-bottom: 1px solid #f1f3f4;
}

.announcement-item:last-child {
  border-bottom: none;
}

.announcement-date {
  color: var(--tc-dark-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.announcement-text {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hızlı Erişim */
.quick-links {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 3px;
}

.quick-links-header {
  background-color: var(--tc-gray);
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  color: var(--tc-dark-blue);
  font-size: 1.1rem;
}

.quick-link-item {
  display: block;
  padding: 12px 20px;
  color: #495057;
  text-decoration: none;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.3s ease;
}

.quick-link-item:last-child {
  border-bottom: none;
}

.quick-link-item:hover {
  background-color: #f8f9fa;
  color: var(--tc-dark-blue);
  text-decoration: none;
  padding-left: 25px;
}

.quick-link-item i {
  color: var(--tc-light-blue);
  margin-right: 10px;
  width: 16px;
}

/* Alt Bilgi */
footer {
  background-color: var(--tc-dark-blue);
  color: white;
  padding: 20px 0;
  border-top: 3px solid var(--tc-red);
  margin-top: 40px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-links {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  margin-top: 15px;
}

/* Listeler */
.program-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.program-list li {
  padding: 8px 0;
  border-bottom: 1px dotted #dee2e6;
  position: relative;
  padding-left: 20px;
}

.program-list li::before {
  content: "•";
  color: var(--tc-light-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.program-list li:last-child {
  border-bottom: none;
}

.program-list li strong {
  color: var(--tc-dark-blue);
}

/* Butonlar */
.btn-gov {
  background-color: var(--tc-dark-blue);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-gov:hover {
  background-color: #15326a;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-gov-red {
  background-color: var(--tc-red);
}

.btn-gov-red:hover {
  background-color: #c30910;
}

/* Yardımcı Sınıflar */
.text-gov-blue {
  color: var(--tc-dark-blue);
}

.text-gov-red {
  color: var(--tc-red);
}

.bg-light-gray {
  background-color: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
  .tc-header .d-flex {
    justify-content: space-between !important;
  }
  
  .tc-logo {
    height: 60px;
    margin-right: 15px;
  }
  
  .tc-title {
    font-size: 1rem;
  }
  
  .slide h3 {
    font-size: 1.3rem;
  }
  
  .slide p {
    font-size: 1rem;
  }
  
  .btn-apply {
    width: auto;
    text-align: center;
    padding: 5px 10px;
    font-size: 0.8rem;
  }
} 