:root {
  --blue-main: #1e3a8a;
  --blue-accent: #3b82f6;
  --blue-light: #dbeafe;
  --green-success: #10b981;
  --border-light: #e5e7eb;
  --bg-light: #f9fafb;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

h5 {
  font-size: 18px;
  font-weight: 500;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: #ffffff url('../img/turbackground.jpg') no-repeat center center fixed;
  background-size: cover;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



#leadership footer {
  margin-top: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 
}

#home .page {
  margin: 0px auto;
}

#leadership .page {
  margin: 100px auto;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 900px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  margin: 20px 0 20px 30px;
}

.page-content ul li,
.page-content ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-content ul li:before {
  content: "▸ ";
  color: var(--blue-accent);
  font-weight: bold;
  margin-right: 8px;
}

.page-content a {
  color: var(--blue-accent);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.page-content a:hover {
  color: var(--blue-main);
  border-bottom-color: var(--blue-accent);
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
  color: var(--blue-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--blue-main);
}

.advantages {
  max-width: 1200px;
  background: white;
}

.hero-banner {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #f0f0f0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transition: all 0.3s ease;
  font-weight: bold;
  z-index: 5;
  opacity: 0;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-main);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-btn-prev {
  left: 20px;
}

.hero-btn-next {
  right: 20px;
}

.hero-slider:hover .hero-btn {
  opacity: 0.8;
}

.hero-slider:hover .hero-btn:hover {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: white;
  width: 14px;
  height: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.advantages-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.advantages-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  text-align: center;
}

/* News Section */
.news-section {
  max-width: 1200px;
  background: white;
}

.news-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.news-header p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 20px;
  border-radius: 12px;
}

.adv-card-link {
  text-decoration: none;
}

.adv-card {
  position: relative;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-light);
  min-height: 250px;
}

.adv-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  background: white;
  border-color: var(--border-light);
}

.adv-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.adv-card:hover .adv-icon {
  transform: scale(1.1);
}

.adv-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-accent);
  display: block;
  margin-bottom: 12px;
}

.adv-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.adv-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
}

form div {
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

form input,
form textarea,
form select {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

form button,
.btn {
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-primary,
form button[type="submit"] {
  background: var(--blue-accent);
  color: white;
}

.btn-primary:hover,
form button[type="submit"]:hover {
  background: var(--blue-main);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--border-light);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table th {
  background: var(--blue-main);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-light);
}

table tr:hover {
  background: var(--bg-light);
}

/* Advantage Cards Links */
.adv-card-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.adv-card-link:hover {
  transform: translateY(-5px);
}

/* Cards */
.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card p {
  color: var(--text-light);
}

/* News Section */
.news-section {
  max-width: 1200px;
  padding: 0 20px;
}

.news-header {
  margin-bottom: 50px;
  text-align: center;
}

.news-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.news-header p {
  font-size: 16px;
  color: var(--text-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.news-item {
  padding: 25px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: var(--blue-accent);
}

.news-item.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: var(--text-light);
  font-style: italic;
}

.news-item-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-item-category {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-main);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
  text-transform: uppercase;
}

.news-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-link {
  display: inline-block;
  color: var(--blue-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.news-item-link:hover {
  color: var(--blue-main);
  transform: translateX(3px);
}

/* Leadership Section */
.leadership-section {
  max-width: 1200px;
  background: white;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.leader-card {
  padding: 25px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  text-align: center;
}

.leader-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: var(--blue-accent);
}

.leader-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--blue-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.leader-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.leader-position {
  font-size: 14px;
  color: var(--blue-main);
  font-weight: 500;
  margin-bottom: 12px;
}

.leader-email {
  font-size: 14px;
  color: var(--text-light);
}

.leader-email a {
  color: var(--blue-main);
  text-decoration: none;
}

.leader-email a:hover {
  text-decoration: underline;
}

/* Team Section */
.team-section {
  max-width: 1200px;
  background: white;
  text-align: center;
  padding: 40px 20px;
}

.team-slides {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-slide.active {
  opacity: 1;
  position: relative;
}

.team-slide img {
  max-width: 150px;
  max-height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-accent);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .adv-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .advantages-header h1 {
    font-size: 28px;
  }

  .page-title {
    font-size: 28px;
  }

  .page-content {
    font-size: 15px;
  }

  .page-content h2 {
    font-size: 20px;
  }

  .adv-card {
    padding: 20px;
  }

  .adv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .hero-banner {
    margin-bottom: 40px;
  }

  .hero-slider {
    height: 300px;
  }

  .hero-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .hero-btn-prev {
    left: 15px;
  }

  .hero-btn-next {
    right: 15px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 12px;
    height: 12px;
  }

  .news-header h2 {
    font-size: 28px;
  }

  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }

  .news-item {
    padding: 20px;
  }

  form input,
  form textarea,
  form select {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-content h2 {
    font-size: 18px;
  }

  .adv-card {
    padding: 15px;
  }

  .adv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }

  .adv-num {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .adv-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .adv-card p {
    font-size: 13px;
  }

  .hero-banner {
    margin-bottom: 30px;
    border-radius: 8px;
  }

  .hero-slider {
    height: 220px;
  }

  .hero-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero-btn-prev {
    left: 10px;
  }

  .hero-btn-next {
    right: 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 10px;
    height: 10px;
  }

  .news-section {
  }

  .news-header h2 {
    font-size: 24px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .news-item {
    padding: 15px;
  }

  .news-item h3 {
    font-size: 16px;
  }

  .news-item p {
    font-size: 13px;
  }

  form button,
  .btn {
    width: 100%;
    align-self: stretch;
  }

  table {
    font-size: 12px;
  }

  table th,
  table td {
    padding: 8px 10px;
  }
}
