html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: Arial, Helvetica, sans-serif;
  background: white;
}

body {
  color: #111;
  position: relative;
}

img {
  display: block;
}

.mini-logo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 150px;
  height: auto;
  z-index: 20;
}

nav {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 110px);
}

nav a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: #2f59df;
}
nav a.active {
  color: #e61d89;
}

nav a.active:hover,
nav a:hover {
  color: #f96e05;
}

.section {
  box-sizing: border-box;
  min-height: auto;
}

.section.white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 70px 50px;
  background: white;
  min-height: 70vh;
}


.big-logo {
  width: auto;
  height: 250px;
  flex-shrink: 0;
}

.white-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 690px;
  text-align: center
}

.section.white h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.section.white p {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.section.blue {
  position: relative;
  background: linear-gradient(135deg, #a1c4fd 0%, #6699ff 100%);
  padding: 40px 0 80px;
  min-height: 70vh;
  overflow: hidden;
}

.section.blue h4 {
  position: relative;
  z-index: 1;
  width: min(82vw, 980px);
  margin: 0 auto 14px;
  background: white;
  border-radius: 28px;
  padding: 16px 28px;
  box-sizing: border-box;
  color: #2453d6;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.section.blue p {
  position: relative;
  z-index: 1;
  width: min(82vw, 980px);
  margin: 12px auto;
  background: white;
  padding: 18px 28px;
  box-sizing: border-box;
  color: #e61d89;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  border-right: 6px solid #e61d89;
  border-bottom: 6px solid #e61d89;
}

footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 36px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-text {
  font-size: 13px;
  color: #999;
}

.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  color: #555;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: #2f59df;
  color: #2f59df;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1000px) {
  nav {
    right: 30px;
    gap: 40px;
  }

  .section.white {
    flex-direction: column;
    text-align: center;
  }

  .white-text {
    max-width: 760px;
  }

  .section.white p {
    text-align: center;
  }
}.page-header {
  position: relative;
  height: 150px;
}
