@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* ================= BODY ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: #0a1a4f;
  scroll-behavior: smooth;
  background-color: #f5f5f5;
}

/* ================= HEADER & NAV ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #0D1B2A 0%, #A0D2DB 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img { height: 50px; }

.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
  color: #FFC107;
  text-shadow: 0 0 5px #FFC107;
}

.contact-btn,
.contact-btn:link,
.contact-btn:visited,
.contact-btn:active {
  display: inline-block;
  background-color: #FFC107;
  color: #003366;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}


.contact-btn:hover,
.contact-btn:focus {
  box-shadow: 0 0 20px rgba(255, 193, 7, 1);
  transform: translateY(-2px);
  outline: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #1b365d;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/banner.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 50px;
    min-height: 70vh;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #1b365d;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
    transform: translateY(-20px);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transform: translateY(-40px);
}

.hero-logo {
  width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-subtitle span {
  display: block;
}


.hero-title {
  margin-top: 0;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 65vh;
    padding: 60px 20px;
  }

  .hero-logo {
    width: 380px;
  }

  .hero-subtitle,
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-title {
    margin-top: -60px;
  }
}


@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 50px 15px;
  }

  .hero-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .hero-logo {
    width: 250px;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 1.1rem;
    margin-top: -20px;
  }
}


@media (max-width: 480px) {
  .hero {
    padding: 40px 10px;
    min-height: 55vh;
  }

  .hero-logo {
    width: 180px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 1rem;
    margin-top: 10px;
  }
}


@media (max-width: 1024px) {
  nav {
    padding: 10px 15px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    height: 40px;
  }

  .menu li a {
    font-size: 0.95rem;
  }
}


@media (max-width: 768px) {
  nav {
    padding: 8px 12px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    height: 35px;
  }

  .menu li a {
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  nav {
    padding: 6px 10px;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 30px;
  }

  .menu li a {
    font-size: 0.85rem;
  }
}


section:not(.hero):not(.contacts):not(.consultation-section) {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

.contacts,
.consultation-section {
  max-width: none !important;
  margin: 0 !important;
  border-bottom: none;
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: #F5F5F5;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}


@media (max-width: 992px) {
  .header-banner {
    height: 50vh;
    margin-top: 70px;
  }
}

@media (max-width: 768px) {
  nav { flex-direction: column; align-items: flex-start; }
  .menu { flex-direction: column; gap: 10px; }
  .header-banner { height: 40vh; margin-top: 60px; }
}

/* ================= WHY US ================= */
.why-us {
  background: #f5f5f5;
  text-align: center;
  padding: 80px 20px;
}

.why-us h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
  color: #0a1a4f;
  text-shadow: 0 0 6px rgba(10, 26, 79, 0.3);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 20px;
  width: 250px;
  transition: all 0.3s ease;
  text-align: center;
  color: #0a1a4f;
}

.why-us-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(10, 26, 79, 0.5);
}

.why-us-item i {
  font-size: 50px;
  color: #0a1a4f;
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 2px 6px rgba(10, 26, 79, 0.4);
}

.why-us-item p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
  text-shadow: 0 1px 4px rgba(10, 26, 79, 0.2);
}

/* ================= SERVICES ================= */
.services {
  background: #f8f9fb;
  color: #0a1a4f;
  text-align: center;
  padding: 90px 20px;
  font-family: 'Inter', sans-serif;
}

.services h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0a1a4f;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(10, 26, 79, 0.2);
  position: relative;
}

.services h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #ffd700;
  margin: 14px auto 0;
  border-radius: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 28px;
  box-shadow: 0 4px 18px rgba(10, 26, 79, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-6px);
  border-top: 4px solid #ffd700;
  box-shadow: 0 10px 30px rgba(10, 26, 79, 0.15);
}

.service-item h3 {
  color: #0a1a4f;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(10, 26, 79, 0.1);
  text-align: center;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
  padding-bottom: 6px;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-item li {
  position: relative;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.8;
  color: #1a2a5a;
  padding-left: 22px;
}

.service-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background-color: #0a1a4f;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(10, 26, 79, 0.3);
}

.service-item li:hover {
  color: #0d1b2a;
}

.service-item li:hover::before {
  background-color: #ffd700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.partner-horizontal {
  margin-top: 70px;
  padding: 40px 50px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(10, 26, 79, 0.15);
  border-left: 6px solid #ffd700;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.partner-left {
  flex: 1;
  text-align: left;
}

.partner-horizontal h3 {
  color: #0a1a4f;
  font-size: 1.6rem;
  margin-bottom: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-horizontal p {
  color: #1a2a5a;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

.partner-right {
  flex-shrink: 0;
}

.partner-button {
  padding: 12px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #0a1a4f;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(10, 26, 79, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.partner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(10, 26, 79, 0.35);
}

@media (max-width: 768px) {
  .partner-horizontal {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ================= ABOUT US ================= */
.about-us { background-color: #F5F5F5; padding: 80px 20px; text-align: center; }

.about-section {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1000px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 70px 80px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.15);
  border-left: 6px solid #0a1a4f;
  border-right: 6px solid #A0D2DB;
  transition: all 0.4s ease;
}

.about-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.25);
}

.about-container h2 {
  font-size: 2.2rem;
  color: #0a1a4f;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(160, 210, 219, 0.4);
}

.about-container p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #1a2a5a;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.about-container strong {
  color: #0d1b2a;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(160, 210, 219, 0.3);
}

.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}

.section-bg > * {
  position: relative;
  z-index: 2;
}

.about-toggle {
    display: inline-block;
    margin-top: 15px;
    background-color: #004aad;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.about-toggle:hover {
    background-color: #003a8a;
    transform: translateY(-2px);
}

.about-extra {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 30px;
    margin: 20px auto 0;
    border-left: 5px solid #004aad;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center; /* відцентрували текст */
    transition: max-height 0.8s ease, opacity 0.6s ease, padding 0.4s ease;
    font-size: 0.95rem; /* менший розмір тексту */
}

.about-extra.show {
    max-height: 2000px;
    opacity: 1;
    padding: 25px 30px;
}

.about-extra p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.about-extra p strong {
    font-weight: 700;
    color: #004aad; /* виділення ключових слів */
}

/* ================= CONTACTS ================= */
.contacts-background {
  background: linear-gradient(to bottom, #2d2f39, #1c1e25);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contacts-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.contacts-background .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts-background h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}


.contact-items {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.contact-item a:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(255, 204, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, #ffcc00 40%, #ffb400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon i {
  font-size: 42px;
  color: #2d2f39;
}

.contact-item p {
  margin: 0;
  font-weight: 500;
  font-size: 1.1rem;
  color: inherit;
}

.map {
  width: 100%;
  margin-top: 50px;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .contact-items {
    flex-direction: column;
    gap: 40px;
  }

  .contact-icon {
    width: 100px;
    height: 100px;
  }

  .contact-icon i {
    font-size: 36px;
  }
}

/* ================= CONSULTATION ================= */
.consultation-background {
  background: linear-gradient(90deg, #0D1B2A 0%, #A0D2DB 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.consultation-container {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 40px 50px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(160, 210, 219, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.consultation-container h2 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}


.consultation-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.consultation-container input,
.consultation-container textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 15px;
  transition: all 0.2s ease;
}

.consultation-container input:focus,
.consultation-container textarea:focus {
  box-shadow: 0 0 8px rgba(160, 210, 219, 0.8);
  background: #fff;
}

.consultation-container textarea {
  min-height: 100px;
  resize: none;
}

.consultation-container button {
  background: #ffcc00;
  color: #1c1e25;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.consultation-container button:hover {
  background: #ffb400;
  transform: scale(1.03);
}


@media (max-width: 992px) {
  .contacts .contact-items {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contacts .map iframe {
    height: 300px;
  }

  .consultation-container {
    padding: 30px 20px;
  }
}

.contacts, .consultation-section {
  margin: 0;
  padding: 0;
}

.consultation-section {
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.consultation-background {
  padding: 40px 0;
}

.contact-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  margin-top: 30px;
}

.consultation-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.submit-btn {
  background: #2a7b44;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #236837;
}

.bottom-info {
  background-color: #2a2a2a;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

.bottom-info a {
  color: #ffd700;
  text-decoration: none;
}

.bottom-info a:hover {
  text-decoration: underline;
}

.back-to-top {
  margin-top: 15px;
  background: #ffd700;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.back-to-top:hover {
  background: #e6c200;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 22px;
  gap: 5px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0D1B2A;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }

  .menu.active {
    max-height: 300px;
    padding: 15px 20px;
  }

  .menu li a {
    display: block;
    padding: 8px 0;
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #444;
}

.close-btn:hover {
  color: #000;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content .submit-btn {
  background-color: #f9b233;
  color: #000;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content .submit-btn:hover {
  background-color: #e1a02e;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav.show {
    display: flex;
  }
}

.bottom-info {
  background: linear-gradient(135deg, #0d1b2a, #1c1e25);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.bottom-info a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s;
}

.bottom-info a:hover {
  color: #ff9800;
}

.footer-link {
  font-weight: 600;
}

.footer-text {
  color: #bbb;
  margin-top: 5px;
  font-style: italic;
  cursor: default;
}

.back-to-top {
  margin-top: 15px;
  padding: 6px 14px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #1c1e25;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff9800, #ffc107);
  transform: translateY(-2px);
}

.partner-footer {
  margin-top: 18px;
  text-align: center;
  color: #bbb;
  font-size: 14px;
}

.partner-name {
  display: block;
  margin: 6px 0 8px;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 0.5px;
}

.partner-footer img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
  transition: transform 0.3s ease;
}

.partner-footer img:hover {
  transform: scale(1.08);
}


/* ================= FAQ ================= */
#faq {
  position: relative;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 60px 70px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.15);
  border-left: 6px solid #0a1a4f;
  border-right: 6px solid #A0D2DB;
  transition: all 0.3s ease;
}

.faq-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.25);
}

.faq-container h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0a1a4f;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(160, 210, 219, 0.4);
  position: relative;
}

.faq-container h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffd700;
  margin: 14px auto 0;
  border-radius: 3px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 4px 15px rgba(10, 26, 79, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-left: 4px solid #ffd700;
  box-shadow: 0 6px 25px rgba(10, 26, 79, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a1a4f;
}

.faq-toggle {
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #0a1a4f;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-toggle:hover {
  color: #ffd700;
  transform: rotate(90deg);
}

.faq-item.active .faq-toggle {
  color: #ffd700;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1a2a5a;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 40px 20px;
  }

  .faq-container h2 {
    font-size: 1.9rem;
  }

  .faq-question span {
    font-size: 1rem;
  }
}
