/* Smooth scroll behavior for entire site */
html {
  scroll-behavior: smooth;
}

/* Enhanced smooth scroll with offset for fixed headers */
:target {
  scroll-margin-top: 80px;
}

/* Login Page Styles */
.login-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 60px 20px;
}

.login-container {
  max-width: 1200px;
  margin: 0 auto;
}

.login-intro {
  text-align: center;
  margin-bottom: 60px;
}

.login-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
}

.login-welcome {
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  max-width: 800px;
  margin: 0 auto;
}

.login-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e7ff;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.16);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.step-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

.step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 16px;
}

.step-card ol {
  padding-left: 20px;
}

.step-card ol li {
  margin-bottom: 8px;
  color: #475569;
}

.security-features {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.security-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.security-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.12);
}

.migration-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e0e7ff;
}

.security-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.security-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  flex-shrink: 0;
}

.security-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

.security-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

.contact-support {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 20px;
  color: #fff;
}

.support-container {
  max-width: 1000px;
  margin: 0 auto;
}

.support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
}

.support-header p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.support-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.support-card .support-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.support-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

.support-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.9;
}

.support-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.support-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}

.support-features svg {
  color: #10b981;
}

.support-note {
  font-weight: 600;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .login-steps {
    grid-template-columns: 1fr;
  }

  .security-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-card {
    flex-direction: column;
    text-align: center;
  }

  .login-intro h2,
  .support-header h2 {
    font-size: 32px;
  }

  .registration-illustration {
    margin-bottom: 20px;
  }

  .registration-illustration svg {
    width: 100%;
    height: auto;
    max-width: 300px;
  }
}

/* Registration Illustration Styles */
.registration-illustration,
.verification-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.registration-illustration svg,
.verification-illustration svg {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
  animation: float 3s ease-in-out infinite;
}

/* Offset animation timing for verification illustration */
.verification-illustration svg {
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* About Us Page Styles */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-intro {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
}

.about-description {
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  max-width: 800px;
  margin: 0 auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e7ff;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.16);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #3b82f6;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

.about-cta {
  margin: auto;
  text-align: center;
  margin-top: 40px;
  max-width: 380px;
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 24px;
  }

  .about-intro h2 {
    font-size: 32px;
  }

  .about-description {
    font-size: 16px;
  }
}

/* FAQ Accordion Styles */
.faq-accordion {
  width: 100%;
  margin: 40px auto 0 auto;
  font-family: "Inter", "Poppins", sans-serif;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(30, 64, 175, 0.08);
  margin-bottom: 18px;
  overflow: visible;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.16);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 600;
  color: #1e40af;
  padding: 12px 32px 12px 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #e0e7ff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}
.faq-question:focus {
  outline: none;
}
.faq-item.open .faq-question {
  background: linear-gradient(90deg, #e0e7ff 0%, #dbeafe 100%);
  color: #2563eb;
  width: 100%;
}
.faq-question::after {
  content: "+";
  color: #2563eb;
  transition: all 0.3s ease;
  font-size: 36px;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 22px 32px 12px 32px;
  font-size: 17px;
  color: #334155;
  background: #fff;
  animation: fadeInFaq 0.3s;
  box-sizing: border-box;
}
@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-question:focus {
  box-shadow: 0 0 0 2px #3b82f6;
}
@media (max-width: 600px) {
  .faq-accordion {
    padding: 0 10px;
  }
  .faq-question,
  .faq-answer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* How It Works Section */
.howitworks-section {
  background: var(--green-bg);
  color: #fff;
  /* padding: 60px 0 40px 0; */
}

.howitworks-title {
  /* background: #fff; */
  color: #1e40af;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 38px;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.12);
  padding: 18px 32px 12px 32px;
  margin: 0 auto 0px auto;
  max-width: 420px;
  text-align: center;
  letter-spacing: -0.02em;
}

.howitworks-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 auto;
  max-width: 1200px;
}

.howitworks-step {
  background: #fff;
  color: #1e293b;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
  padding: 32px 24px 24px 24px;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.howitworks-step:hover {
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.18);
  transform: translateY(-6px) scale(1.03);
}
.howitworks-step-number {
  background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
  color: #fff;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.12);
  letter-spacing: 0.04em;
}
.howitworks-step-title {
  font-size: 22px;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.howitworks-step-text {
  font-size: 16px;
  font-family: "Inter", "Poppins", sans-serif;
  text-align: center;
  margin-bottom: 0;
}
.howitworks-divider {
  width: 2px;
  background: linear-gradient(180deg, #e0e7ff 0%, #3b82f6 100%);
  border-radius: 2px;
  margin: 0 0;
  align-self: stretch;
}
.howitworks-desc {
  text-align: center;
  font-size: 18px;
  color: #c7d2fe;
  margin: 16px auto 32px auto;
  font-family: "Inter", "Poppins", sans-serif;
}

@media (max-width: 900px) {
  .howitworks-steps {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .howitworks-divider {
    display: none;
  }
}
/* Дисклеймер секция */
.disclaimer-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #fff;
  /* border-radius: 18px; */
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.12);
  padding: 40px 32px;
  /* margin: 32px auto 0 auto; */
  /* max-width: 1200px; */
  font-size: 18px;
  font-family: "Inter", "Poppins", sans-serif;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.disclaimer-section a {
  color: #93c5fd;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.disclaimer-section a:hover {
  color: #fff;
}

/* Секция заголовка Features */
.features-title-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.08);
  padding: 48px 32px 24px 32px;
  margin: 0px auto 0 auto;
  /* max-width: 900px; */
  text-align: center;
}

.features-title-section h2 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
}
.features-title-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 2px;
  margin: 16px auto 0 auto;
}
.styled-headline {
  text-align: center;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  color: #fff !important;
  padding-bottom: 1rem;
}

.styled-headline::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  margin: 16px auto 0 auto;
}
.styled-headline.black {
  color: #1e293b !important;
}

.styled-headline.black::after {
  background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
}
.features-title-section p {
  font-size: 18px;
  color: #334155;
  margin-bottom: 0;
  font-family: "Inter", "Poppins", sans-serif;
}
.center {
  margin: 2rem auto 0;
}
.section {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.container-one {
  padding: 200px 0 180px;
}

.section_one {
  background-image: url(../images/section_one.webp);
  color: var(--white) !important;
}
.section_one p {
  margin-bottom: 0.25rem;
}
.section_one .subheader-title {
  margin-top: 1rem;
}

.section_dark {
  background-color: var(--green-bg);
  color: var(--white) !important;
  padding: 40px 0;
}

.section_light {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  color: var(--black);
  padding: 40px 0;
}

.offer-title {
  text-align: center;
}

.container-text {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.section-element {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 33%;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.section-element:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.section-elem {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.element-img {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}

.elem-img {
  width: 50%;
}

.element-img svg {
  width: 100%;
  height: 100%;
  fill: var(--green-bg);
}

.element-title {
  font-size: 22px;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
  color: var(--el-title-color);
  text-align: center;
  letter-spacing: -0.01em;
}

.element-text {
  text-align: left;
  font-size: 17px;
}

.section_dark h2 {
  color: var(--dark-title-color);
}

.section_white {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-link {
  font-size: 17px;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 8px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.button-link-section {
  font-size: 17px;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 8px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1e40af;
  width: max-content;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.button-link-section:hover {
  color: #1d4ed8;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 1);
}

.button-link-section:hover svg {
  fill: #1d4ed8;
}

.button-link:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: var(--white);
}

.button-link:hover svg {
  fill: var(--white);
}

.button-link svg {
  width: 17px;
  height: 17px;
  fill: var(--white);
}

.button-link-section svg {
  width: 17px;
  height: 17px;
  fill: #1e40af;
}

.elem-content {
  width: 50%;
}

.elem-text {
  font-size: 16px;
}

.section_content {
  width: 100%;
}

.step-container {
  display: flex;
  gap: 20px;
}

.step-item {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-logo {
  padding: 15px 20px;
  background: linear-gradient(135deg, #a5b4fc 0%, #dbeafe 100%);
  font-size: 17px;
  text-transform: uppercase;
  color: var(--el-title-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-logo:hover {
  background: linear-gradient(135deg, #93c5fd 0%, #bfdbfe 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(147, 197, 253, 0.3);
  color: var(--black);
}

.step-title {
  font-size: 22px;
  color: var(--white);
}

.step-text {
  font-size: 17px;
  text-align: center;
  font-weight: 600;
}

.center-step {
  border-right: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
}

.section_white-content {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section_white-content_el {
  width: 100%;
}

.section_white-content_el h3 {
  font-size: 22px;
}

.section_white-content_el p {
  font-size: 17px;
}

.wp-block-table {
  margin: 0;
  font-size: 17px;
}

.text-image {
  display: flex;
  gap: 20px;
  width: 100%;
}

.text-image p {
  width: 50%;
}

.text-image img {
  width: 50%;
  height: 100%;
  margin: auto;
}

.rating {
  font-size: 24px !important;
  font-weight: 700;
}

.section_white-content_el strong {
  font-size: 20px;
}

.section_white-content_el p {
  margin-bottom: 0.9rem;
}

#scrollToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

#scrollToTop:hover {
  background-color: var(--hover-green-bg);
}

.section_title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 0 120px;
  margin: 0 auto;
  background-image: url(../images/hero_background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section_title h1 {
  color: var(--white);
  font-size: 44px;
  font-weight: 700;
}

.about_white {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.section_content {
  display: flex;
  gap: 20px;
}

.about_white .section_content h2 {
  width: 50%;
  font-size: 26px;
  padding-left: 20px;
  border-left: 3px solid var(--black);
  height: max-content;
}

.section_text {
  width: 50%;
}

.section_text h2 {
  font-size: 22px;
  font-weight: 700;
}

.section_text h3 {
  font-size: 18px;
}

.section_text p {
  font-size: 17px;
}

.about_white .section_content .section-text p {
  font-size: 17px;
}

.section_green {
  background-color: var(--green-bg);
  color: var(--white) !important;
}

.section_green .section_content {
  align-items: center;
}

.section_green .section_content .section_images {
  width: 50%;
}

.section_green .section_content .section_images img {
  width: 100%;
}

.section_green .section_text {
  padding: 80px 60px 60px;
}

.form_content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.form_content .form_content__text,
.form_content .section-form {
  width: 50%;
}

.section_white-content p {
  width: 100%;
  font-size: 17px;
}

.section_white-content h2 {
  font-size: 32px;
  font-weight: 700;
}

.section_tiles {
  max-width: 1140px;
  margin: 0 auto;
}

.section_tiles h2 {
  margin-top: 40px;
  font-size: 20px;
  color: var(--dark-green-text);
  font-weight: 700;
  text-align: center;
}

.section_tiles h3 {
  font-size: 17px;
  color: var(--dark-green-text);
  font-weight: 700;
  text-align: center;
}

.tiles {
  display: flex;
  gap: 20px;
}

.tiles_title-text {
  font-size: 17px;
  color: var(--dark-green-text);
  text-align: center;
}

.tiles_container {
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: var(--white) !important;
  width: 33%;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tiles_container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

.tile_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tiles--img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.tiles--img svg {
  width: 100%;
  height: 100%;
}

.tiles_title {
  text-align: center;
  font-size: 22px;
  margin: 8px 0 20px;
}

.tile_container p {
  text-align: center;
  font-size: 17px;
}

.section_title p {
  color: var(--white);
  font-size: 17px;
}

.form_content__text h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--dark-green-text);
}

.form_content__text p {
  color: var(--dark-green-text);
  font-size: 17px;
}

.privacy_content h2 {
  font-size: 26px;
}

.iti {
  width: 100%;
}

.iti__selected-dial-code {
  color: var(--black);
}

.iti__country-list {
  color: var(--black);
}

#steps .section_content {
  flex-direction: column;
}

.section_one {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/section_one.webp);
}

.section_title {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/hero_background.webp);
}

.footer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/footer_background.webp) !important;
}

.section-content {
  width: 100%;
}
.usdt_title_text {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
@media (min-width: 1212px) {
  .usdt_title_text {
    padding: 0 20px;
  }
}

@media (max-width: 1212px) {
  .section,
  .section_title {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .header-container,
  .footer {
    padding: 10px 20px !important;
  }

  .container-one {
    flex-direction: column;
    padding: 150px 0 80px;
  }

  .section-content {
    margin-bottom: 20px;
  }

  .container-text {
    padding-bottom: 0;
  }

  .section_white {
    padding: 30px 0;
  }

  .center-step {
    padding: 0 10px;
  }

  .section_green {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section_green .section_content {
    flex-direction: column;
  }

  .section_green .section_content .section_images,
  .section_text {
    width: 100%;
  }

  .section_green .section_text {
    padding: 20px;
  }

  .about_white .section_content {
    flex-direction: column;
  }

  .about_white .section_content h2 {
    font-size: 20px;
    text-wrap: nowrap;
  }

  .about_white .section_content h3 {
    font-size: 20px;
  }

  .tiles {
    flex-direction: column;
    justify-content: center;
  }

  .tiles_container {
    margin: 10px 0;
    width: 100%;
  }

  .form_content {
    flex-direction: column;
  }

  .form_content .form_content__text,
  .form_content .section-form {
    width: 100%;
  }

  .login_text {
    flex-direction: column;
  }

  .login_text img {
    width: 100%;
  }

  .text-image {
    flex-wrap: wrap;
  }

  .text-image img {
    width: 100%;
  }

  #section-text {
    flex-direction: column-reverse;
  }
}
#offer_box {
  padding-top: 2rem;
}
@media (max-width: 900px) {
  #offer_box {
    flex-direction: column;
    align-items: center;
  }

  .section-element {
    max-width: 100%;
  }

  .row {
    flex-direction: column;
    align-items: center;
  }

  .elem-content,
  .elem-img {
    width: 100%;
  }

  #second-elem {
    flex-direction: column-reverse;
  }

  #steps .step-container {
    flex-direction: column;
  }

  #steps .step-item {
    width: 100%;
  }

  #steps .center-step {
    border-right: none;
    border-left: none;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
  }

  #brief_overview {
    flex-direction: column-reverse;
  }

  #brief_overview img {
    width: 100%;
  }

  .footer-menu-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 1rem !important;
  }
  @media (max-width: 720px) {
    .footer-menu-list {
      padding: 1rem;
      flex-direction: column;
    }
  }
  .section_title {
    padding: 120px 0 20px;
  }
}

@media (max-width: 600px) {
  .section_title h1 {
    font-size: 28px;
  }
}

.info img {
  border-radius: 0.25rem;
}

/* New Login Page Styles */
.login-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
}

.login-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.login-intro {
  padding-right: 2rem;
}

.login-welcome {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #475569;
  margin: 0;
  text-align: left;
}

.login-form-container {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Use the same form styles as main page */
.login-form-container .section-form {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.9) 0%,
    rgba(30, 64, 175, 0.9) 100%
  );
  width: 100% !important;
  margin: 0 !important;
  padding: 24px 16px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(10px);
  height: fit-content;
  max-width: 420px;
}

.login-form-container .section-form h2 {
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", "Inter", sans-serif;
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
}

/* Override login-form-card styles to use main page form styles */
.login-form-card {
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  backdrop-filter: none !important;
  width: 100% !important;
  max-width: none !important;
}

.login-form-card::before {
  display: none !important;
}

.form-header {
  display: none !important;
}

.form-content {
  position: relative;
}

/* Reset all custom form styles to use main page styles */
.login-form-card .elementor-form,
.login-form-card .elementor-field,
.login-form-card .elementor-field:focus,
.login-form-card .elementor-field:hover,
.login-form-card .elementor-button,
.login-form-card .elementor-button:hover,
.login-form-card .elementor-button::before,
.login-form-card .elementor-field-group,
.login-form-card .iti,
.login-form-card .iti__country-list,
.login-form-card .iti__selected-flag,
.login-form-card .error,
.login-form-card .loader,
.login-form-card #resultResponse {
  all: unset !important;
}
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.section-content.reverse .content-illustration {
  order: 1;
}

.section-content.reverse .content-text {
  order: 2;
}

.content-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.feature-list,
.security-list {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.feature-list li,
.security-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
}

.feature-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.2rem;
}

.security-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
}

.content-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-illustration svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
  border-radius: 12px;
}

.section_light {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section_gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-header p {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #475569;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.benefit-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-card p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.cta-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.cta-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #3b82f6;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: #1e40af;
}

/* Responsive Design */
@media (max-width: 968px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 40px 20px;
  }
  
  .login-intro {
    padding-right: 0;
    order: 2;
    text-align: center;
  }
  
  .login-form-container {
    order: 1;
    max-width: 420px;
    margin: 0 auto;
  }
  
  .login-form-container .section-form {
    padding: 20px 12px 32px;
  }
  
  .login-form-container .section-form h2 {
    font-size: 22px;
  }
  
  .login-welcome {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .login-hero {
    padding: 40px 0;
  }
  
  .login-container {
    gap: 2rem;
    padding: 20px 15px;
  }
  
  .login-form-container .section-form {
    padding: 16px 8px 28px;
    border-radius: 12px;
  }
  
  .login-form-container .section-form h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .login-welcome {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .section-content.reverse .content-illustration,
  .section-content.reverse .content-text {
    order: unset;
  }
  
  .content-text h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 2rem;
  }
}