/* 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #006fb3;
  --secondary-blue: #0085c8;
  --menu-blue: #0074b7;
  --menu-hover: #238fc6;
  --submenu-text: #004d88;
  --submenu-hover: #dcecf5;
  --white: #ffffff;
  --soft-bg: #edf5fb;
  --light-blue-bg: #eaf4fb;
  --border-blue: #cfdde9;
  --footer-bg: #001a2d;
  --footer-card: #062b42;
  --text-dark: #001f3f;
  --text-soft: #344b63;
  --shadow-soft: 0 10px 30px rgba(0, 44, 85, 0.08);
  --shadow-card: 0 16px 38px rgba(0, 56, 112, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Times New Roman", serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}


.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 54px;
  background: #ffffff;
}

.logo-box {
  width: 110px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-box {
  flex: 1;
  text-align: center;
}

.title-box h1 {
  color: #b34207;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
}

.title-box p {
  color: red;
  font-size: 1rem;
  margin-top: 4px;
}


.navbar {
  width: 100%;
  background: var(--menu-blue);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--menu-blue);
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 17px 28px;
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.menu > li > a:hover,
.menu > li.active-menu > a {
  background: var(--menu-hover);
}


.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  list-style: none;
  background: #ffffff;
  z-index: 10000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.dropdown:hover > .submenu {
  display: block;
}

.submenu li {
  position: relative;
}

.submenu li a {
  display: block;
  padding: 14px 20px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--submenu-text);
  text-decoration: none;
  background: #ffffff;
  border-bottom: 1px solid #cfdde9;
  white-space: nowrap;
  transition: var(--transition);
}

.submenu li a:hover {
  background: var(--submenu-hover);
  color: var(--submenu-text);
}


.programmes-dropdown > .programmes-submenu {
  left: 50%;
  transform: translateX(-50%);
}


.has-submenu > a {
  position: relative;
  padding-right: 40px;
}

.has-submenu > a::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--submenu-text);
  font-size: 1.3rem;
  font-weight: 700;
}


.nested-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 300px;
  list-style: none;
  background: #ffffff;
  border-radius: 0 14px 14px 0;
  overflow: hidden;
  z-index: 10001;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.has-submenu:hover > .nested-submenu {
  display: block;
}

.has-submenu:hover > a {
  background: var(--submenu-hover);
}

.nested-submenu li a {
  background: #f6f9fc;
  color: var(--submenu-text);
  border-bottom: 1px solid #cfdde9;
}

.nested-submenu li a:hover {
  background: var(--submenu-hover);
  color: var(--submenu-text);
}

.skill-nested-submenu {
  max-height: 250px;
  overflow-y: auto;
}


.downloads-submenu {
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
}

.downloads-submenu li a {
  color: #0c4f8f;
}

.downloads-submenu li a:hover {
  color: var(--submenu-text);
}


.downloads-hero {
  position: relative;
  min-height: 365px;
  background: linear-gradient(135deg, #006fb3 0%, #0f83c5 50%, #238fc6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.13), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.hero-content h2 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-line {
  width: 88px;
  height: 5px;
  background: #e5b343;
  border-radius: 999px;
  margin: 0 auto 22px;
}

.hero-content p {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}


.downloads-section {
  padding: 80px 52px 90px;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5fb 100%);
}

.downloads-container {
  max-width: 1250px;
  margin: 0 auto;
}


.downloads-top-panel {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 38px;
}

.filter-box,
.selected-form-box {
  background: #ffffff;
  border: 1px solid #d3e1ee;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.filter-box {
  padding: 26px 22px;
}

.filter-box label {
  display: block;
  color: #005fa3;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.form-dropdown {
  width: 100%;
  height: 54px;
  padding: 0 48px 0 16px;
  border: 1px solid #0074b7;
  border-radius: 12px;
  background-color: #ffffff;
  color: #001f3f;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230074b7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
}

.form-dropdown:focus {
  box-shadow: 0 0 0 3px rgba(0, 116, 183, 0.14);
}


.selected-form-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px 26px 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.selected-form-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #0074b7;
}

.selected-form-info {
  flex: 1;
}

.selected-label {
  display: inline-block;
  color: #006fb3;
  background: #eaf4fb;
  border: 1px solid #d0e3f2;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.selected-form-info h4 {
  color: #001f3f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.selected-form-info p {
  color: var(--text-soft);
  font-size: 1rem;
}

.selected-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.download-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d3e1ee;
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  min-height: 215px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: #0074b7;
}

.download-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(0, 56, 112, 0.17);
}

.card-top {
  margin-bottom: 20px;
}

.card-badge {
  display: inline-block;
  color: #006fb3;
  background: #eaf4fb;
  border: 1px solid #d0e3f2;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.download-card h4 {
  color: #001f3f;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.download-card p {
  color: var(--text-soft);
  font-size: 1rem;
  min-height: 64px;
  margin-bottom: 22px;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.download-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.download-btn {
  background: #0074b7;
  color: #ffffff;
  border: 1px solid #0074b7;
}

.download-btn:hover {
  background: #005f99;
}

.secondary-btn {
  background: #f4f9fd;
  color: #006fb3;
  border: 1px solid #c9ddec;
}

.secondary-btn:hover {
  background: #eaf4fb;
}


.no-results {
  text-align: center;
  max-width: 520px;
  margin: 30px auto 0;
  background: #ffffff;
  border: 1px solid #d3e1ee;
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: var(--shadow-soft);
}

.no-results p {
  color: var(--text-soft);
  font-size: 1rem;
}


.site-footer {
  background: #001a2d;
  color: #ffffff;
  padding: 60px 0 70px;

}

.footer-container {
 
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 42px;
 
}

.footer-column h4,
.footer-about h3 {
  color: #ffffff;
 
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-tagline {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.8;
 
  font-style: normal;
}

.footer-text {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: 225px;
}

.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.6;
  text-decoration: none;
  padding-left: 14px;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a.active-footer-link {
  color: #ffd84d;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 47px;
  width: 280px;
  padding: 0 20px;
  border-radius: 8px;
  background: #062f46;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icon {
  width: 18px;
  display: inline-block;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.contact-icon {
  color: #ff0f7b;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 36px;
  }

  .social-btn {
    width: 100%;
    max-width: 100%;
  }
} */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #006fb3;
  --secondary-blue: #0085c8;
  --menu-blue: #0074b7;
  --menu-hover: #238fc6;
  --submenu-text: #004d88;
  --submenu-hover: #dcecf5;
  --white: #ffffff;
  --soft-bg: #edf5fb;
  --border-blue: #cfdde9;
  --footer-bg: #001a2d;
  --text-dark: #001f3f;
  --text-soft: #344b63;
  --shadow-soft: 0 10px 30px rgba(0, 44, 85, 0.08);
  --shadow-card: 0 16px 38px rgba(0, 56, 112, 0.12);
  --radius-lg: 22px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Times New Roman", serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 54px;
  background: #ffffff;
}

.logo-box {
  width: 110px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-box {
  flex: 1;
  text-align: center;
}

.title-box h1 {
  color: #b34207;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
}

.title-box p {
  color: red;
  font-size: 1rem;
  margin-top: 4px;
}

.navbar {
  width: 100%;
  background: var(--menu-blue);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--menu-blue);
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 17px 28px;
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.menu > li > a:hover,
.menu > li.active-menu > a {
  background: var(--menu-hover);
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  list-style: none;
  background: #ffffff;
  z-index: 10000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.dropdown:hover > .submenu {
  display: block;
}

.submenu li {
  position: relative;
}

.submenu li a {
  display: block;
  padding: 14px 20px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--submenu-text);
  text-decoration: none;
  background: #ffffff;
  border-bottom: 1px solid #cfdde9;
  white-space: nowrap;
  transition: var(--transition);
}

.submenu li a:hover {
  background: var(--submenu-hover);
  color: var(--submenu-text);
}

.programmes-dropdown > .programmes-submenu,
.downloads-submenu {
  left: 50%;
  transform: translateX(-50%);
}

.has-submenu > a {
  position: relative;
  padding-right: 40px;
}

.has-submenu > a::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--submenu-text);
  font-size: 1.3rem;
  font-weight: 700;
}

.nested-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 300px;
  list-style: none;
  background: #ffffff;
  border-radius: 0 14px 14px 0;
  overflow: hidden;
  z-index: 10001;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.has-submenu:hover > .nested-submenu {
  display: block;
}

.has-submenu:hover > a {
  background: var(--submenu-hover);
}

.nested-submenu li a {
  background: #f6f9fc;
  color: var(--submenu-text);
  border-bottom: 1px solid #cfdde9;
}

.nested-submenu li a:hover {
  background: var(--submenu-hover);
}

.skill-nested-submenu {
  max-height: 250px;
  overflow-y: auto;
}

.downloads-submenu {
  min-width: 280px;
}

.downloads-hero {
  position: relative;
  min-height: 365px;
  background: linear-gradient(135deg, #006fb3 0%, #0f83c5 50%, #238fc6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.13), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.hero-content h2 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-line {
  width: 88px;
  height: 5px;
  background: #e5b343;
  border-radius: 999px;
  margin: 0 auto 22px;
}

.hero-content p {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.downloads-section {
  padding: 80px 52px 90px;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5fb 100%);
}

.downloads-container {
  max-width: 1250px;
  margin: 0 auto;
}

.downloads-top-panel {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 38px;
}

.filter-box,
.selected-form-box {
  background: #ffffff;
  border: 1px solid #d3e1ee;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.filter-box {
  padding: 26px 22px;
}

.filter-box label {
  display: block;
  color: #005fa3;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.form-dropdown {
  width: 100%;
  height: 54px;
  padding: 0 48px 0 16px;
  border: 1px solid #0074b7;
  border-radius: 12px;
  background-color: #ffffff;
  color: #001f3f;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230074b7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
}

.form-dropdown:focus {
  box-shadow: 0 0 0 3px rgba(0, 116, 183, 0.14);
}

.selected-form-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px 26px 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.selected-form-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #0074b7;
}

.selected-form-info {
  flex: 1;
}

.selected-label,
.card-badge {
  display: inline-block;
  color: #006fb3;
  background: #eaf4fb;
  border: 1px solid #d0e3f2;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.selected-label {
  margin-bottom: 12px;
}

.selected-form-info h4 {
  color: #001f3f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.selected-form-info p {
  color: var(--text-soft);
  font-size: 1rem;
}

.selected-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.download-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d3e1ee;
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  min-height: 230px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: #0074b7;
}

.download-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(0, 56, 112, 0.17);
}

.card-top {
  margin-bottom: 20px;
}

.download-card h4 {
  color: #001f3f;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.download-card p {
  color: var(--text-soft);
  font-size: 1rem;
  min-height: 72px;
  margin-bottom: 22px;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.download-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.download-btn {
  background: #0074b7;
  color: #ffffff;
  border: 1px solid #0074b7;
}

.download-btn:hover {
  background: #005f99;
}

.secondary-btn {
  background: #f4f9fd;
  color: #006fb3;
  border: 1px solid #c9ddec;
}

.secondary-btn:hover {
  background: #eaf4fb;
}

.no-results {
  text-align: center;
  max-width: 520px;
  margin: 30px auto 0;
  background: #ffffff;
  border: 1px solid #d3e1ee;
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: var(--shadow-soft);
}

.no-results p {
  color: var(--text-soft);
  font-size: 1rem;
}

.site-footer {
  background: #001a2d;
  color: #ffffff;
  padding: 60px 0 70px;
}

.footer-container {
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.footer-column h4,
.footer-about h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-tagline {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-text {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: 225px;
}

.footer-links,
.contact-list {
  list-style: none;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.6;
  text-decoration: none;
  padding-left: 14px;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a.active-footer-link {
  color: #ffd84d;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 47px;
  width: 280px;
  padding: 0 20px;
  border-radius: 8px;
  background: #062f46;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn:hover,
.social-btn.active-social {
  background: #eed920;
}

.social-icon {
  width: 18px;
  display: inline-block;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.contact-icon {
  color: #ff0f7b;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 992px) {
  .menu {
    flex-wrap: wrap;
  }

  .downloads-top-panel {
    grid-template-columns: 1fr;
  }

  .selected-form-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .top-header {
    padding: 14px 20px;
  }

  .logo-box {
    width: 76px;
    height: 62px;
  }

  .title-box h1 {
    font-size: 2rem;
  }

  .menu > li > a {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .downloads-section {
    padding: 60px 20px 70px;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 28px;
    gap: 36px;
  }

  .social-btn {
    width: 100%;
    max-width: 100%;
  }
}