html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Geologica', Arial, sans-serif;
  color: #0F172A;
  background: #fff;
}

.main-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  width: 100vw;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-title-main, .logo-title-sub {
  display: none;
}

.nav-desktop {
  display: flex;
  gap: 40px;
}

.header-app-store {
  display: flex;
  align-items: center;
}

.app-store-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.app-store-icon {
  width: 120px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.2s;
}

.app-store-icon:hover {
  opacity: 0.8;
}

.nav-link {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #0F172A;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-link.active,
.nav-link:hover {
  color: #7C3AED;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(151,71,255,0) 0%, rgba(151,71,255,1) 100%);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 2px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  gap: 6px;
}
.burger-menu span {
  display: block;
  height: 4px;
  width: 100%;
  background: #0F172A;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100vw;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  z-index: 100;
}

.nav-mobile.open {
  display: flex;
}
.burger-menu.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.burger-menu.open span:nth-child(2) {
  opacity: 0;
}
.burger-menu.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 900px) {
  .main-content, .header-content {
    width: 95vw;
  }
  .nav-desktop {
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .header-content {
    width: 100vw;
    padding: 8px 16px;
  }
  .nav-desktop {
    display: none;
  }
  .header-app-store {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .nav-mobile {
    display: flex;
  }
}

.section1 {
  width: 100vw;
  background: linear-gradient(45deg, #F3EEFF 0%, #CDA6FF 100%);
  box-shadow: 0 4px 32px rgba(151,71,255,0.07);
  padding: 0;
  margin: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.section-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 600px;
  padding: 48px 0;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.section1-left {
  flex: 1 1 0;
  max-width: 600px;
  z-index: 2;
}

.section1-title {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #0F172A;
}

.section1-desc {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #23263b;
  margin-bottom: 36px;
  margin-top: 0;
}

.section1-clients-block {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.section1-clients {
  display: flex;
  align-items: center;
  gap: -12px;
}

.client-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(151,71,255,0.10);
  margin-left: -16px;
  background: #fff;
}
.section1-clients img:first-child {
  margin-left: 0;
}

.section1-clients-text {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #0F172A;
  line-height: 1.2;
}
.clients-count {
  font-weight: 700;
  font-size: 28px;
  color: #0F172A;
}

.section1-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}

.section1-phone {
  width: 340px;
  max-width: 100%;
  box-shadow: 0 8px 32px rgba(151,71,255,0.15);
  border-radius: 0;
}

.section1-clients-img {
  width: 221px;
  height: 87px;
  display: block;
  border-radius: 0;
}

.section1-buttons {
  display: flex;
  gap: 16px;
  margin: 32px 0 40px 0;
}
.btn-primary {
  background: transparent;
  color: #0F172A;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  border: 2px solid #0F172A;
  border-radius: 12px;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #0F172A;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: #0F172A;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  border: 2px solid #0F172A;
  border-radius: 12px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: #0F172A;
  color: #fff;
}

.credit-calculator {
  width: 471px;
  height: 577px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(151,71,255,0.15);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.calculator-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.calculator-icon {
  width: 64px;
  height: 64px;
  background: #f3eeff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.calculator-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.calculator-header h3 {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #0F172A;
  text-align: center;
  margin: 0;
}
.calculator-amount {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #0F172A;
  margin-bottom: 32px;
}
.calculator-slider {
  width: 100%;
  margin-bottom: 40px;
}
.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5e5e5;
  outline: none;
  -webkit-appearance: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #9747FF;
  cursor: pointer;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 16px;
  color: #64758B;
}
.calculator-features {
  width: 100%;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 16px;
  color: #0F172A;
}
.checkmark {
  color: #4CAF50;
  font-weight: bold;
}
.calculator-btn {
  width: 100%;
  background: #0F172A;
  color: #fff;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  border: none;
  border-radius: 16px;
  padding: 18px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.calculator-btn:hover {
  background: #23263b;
}

@media (max-width: 1100px) {
  .section1-title {
    font-size: 44px;
  }
  .section-content {
    padding: 32px 0;
  }
}

@media (max-width: 900px) {
  .section1-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .credit-calculator {
    width: 100%;
    height: auto;
    padding: 24px 16px;
  }
  .section1-partners {
    gap: 12px;
    margin-top: 48px;
  }
  .section-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    min-height: unset;
    padding: 24px 0;
  }
  .section1-right {
    width: 100%;
    justify-content: center;
    margin-bottom: 32px;
  }
  .section1-left {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .section1-title {
    font-size: 28px;
  }
  .section1-desc {
    font-size: 16px;
  }
  .section1-clients-text {
    font-size: 16px;
  }
  .clients-count {
    font-size: 20px;
  }
  .section1-phone {
    width: 220px;
  }
  .section-content {
    padding: 12px 0;
  }
  .section1 {
    padding: 0;
  }
}

.section1-partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 100px;
  flex-wrap: wrap;
  width: 100%;
  order: 3;
}
.partner-img {
  max-height: 58px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .section1-partners {
    gap: 12px;
    margin-top: 48px;
  }
  .partner-img {
    max-height: 43px;
  }
}

.section2 {
  width: 100vw;
  background: #fff;
  margin: 0;
  padding: 0;
  height: 271px;
  min-height: 271px;
}

.section2-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 0 0;
}

.section2-stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 8px 0 8px;
}

.stat-value {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #23263b;
  margin-bottom: 12px;
}
.stat-value small {
  font-size: 20px;
  font-weight: 400;
}
.stat-label {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #23263b;
  margin-bottom: 24px;
  text-align: center;
}
.stat-underline {
  width: 80%;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(151,71,255,0) 0%, #9747FF 100%);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .section2-content {
    flex-direction: column;
    gap: 16px;
    padding: 32px 0 0 0;
  }
  .section2-stat {
    padding: 16px 0 0 0;
  }
  .stat-value {
    font-size: 32px;
  }
  .stat-label {
    font-size: 16px;
  }
  .stat-underline {
    height: 4px;
  }
}

.section3 {
  width: 100vw;
  background: #fff;
  margin: 0;
  padding: 0;
  margin-top: -80px;
  margin-bottom: 80px;
}

.section3-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 80px 0 0 0;
}

.section3-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 0;
}
.section3-row.left .section3-img {
  order: 0;
}
.section3-row.left .section3-text {
  order: 1;
}
.section3-row.right .section3-img {
  order: 1;
}
.section3-row.right .section3-text {
  order: 0;
}
.section3-img {
  flex: 1 1 0;
  max-width: 420px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section3-img img {
  width: 100%;
  height: auto;
  display: block;
}
.section3-text {
  flex: 1 1 0;
  max-width: 480px;
  padding: 0 16px;
}
.section3-title {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #23263b;
  margin: 0 0 16px 0;
}
.section3-desc {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #23263b;
  margin: 0;
}
.section3-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section3-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .section3-content {
    gap: 32px;
    padding: 32px 0 0 0;
  }
  .section3-row {
    gap: 24px;
  }
  .section3-title {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .section3-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section3-img, .section3-text {
    max-width: 100%;
    padding: 0;
  }
  .section3-content {
    padding: 16px 0 0 0;
  }
}

.section-faq {
  width: 100vw;
  background: #faf9fc;
  margin: 0;
  padding: 0;
}
.section-faq-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 80px 0 80px 0;
}
.faq-image-block {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  max-width: 420px;
}
.faq-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}
.faq-block {
  flex: 2 1 0;
  max-width: 600px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq-title {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: #23263b;
  margin: 0 0 32px 0;
}
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(151,71,255,0.04);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 4px 24px rgba(151,71,255,0.10);
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #23263b;
  padding: 24px 32px 24px 24px;
  text-align: left;
  cursor: pointer;
  border-radius: 24px;
  transition: background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
}
.faq-question::after {
  content: '›';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 32px;
  color: #64758B;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after {
  content: '›';
  transform: translateY(-50%) rotate(-90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #64758B;
  padding: 0 32px 0 24px;
  transition: max-height 0.3s, padding 0.3s;
  line-height: 1.8;
  margin-top: 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 32px 24px 24px;
}
@media (max-width: 900px) {
  .section-faq-content {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0 32px 0;
  }
  .faq-image-block {
    max-width: 100%;
    min-width: 0;
  }
  .faq-block {
    max-width: 100%;
    padding: 0;
  }
  .faq-title {
    font-size: 28px;
  }
  .faq-question {
    font-size: 18px;
    padding: 18px 24px 18px 16px;
  }
  .faq-answer {
    font-size: 16px;
    padding: 0 24px 0 16px;
  }
  .faq-item.open .faq-answer {
    padding: 0 24px 18px 16px;
  }
}

.section-contact {
  width: 100vw;
  background: linear-gradient(120deg, #F3EEFF 0%, #CDA6FF 100%);
  margin: 0;
  padding: 0;
}
.section-contact-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 80px 0 80px 0;
}
.contact-left {
  flex: 1 1 0;
  max-width: 480px;
}
.contact-title {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #23263b;
  margin: 0 0 24px 0;
}
.contact-desc {
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 16px;
  color: #23263b;
  margin-bottom: 40px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 18px;
  color: #23263b;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: #ede6ff;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form {
  flex: 1 1 0;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px rgba(151,71,255,0.10);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 400px;
  max-width: 600px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #23263b;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 18px;
  color: #23263b;
  background: #f7f5fb;
  border: 2px solid #ede6ff;
  border-radius: 16px;
  padding: 14px 18px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #a084f7;
  box-shadow: 0 0 0 2px #c7bfff33;
}
.contact-form textarea {
  min-height: 120px;
  max-height: 240px;
}
.contact-submit {
  width: 100%;
  background: #0F172A;
  color: #fff;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  border: none;
  border-radius: 16px;
  padding: 18px 0;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-submit:hover {
  background: #23263b;
}
@media (max-width: 900px) {
  .section-contact-content {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0 32px 0;
  }
  .contact-left, .contact-form {
    max-width: 100%;
    min-width: 0;
  }
  .contact-title {
    font-size: 32px;
  }
  .contact-form {
    padding: 24px 12px 16px 12px;
  }
}

.site-footer {
  width: 100vw;
  background: url('images/Footer.png') center/cover no-repeat #0F172A;
  color: #fff;
  padding: 0;
  margin: 0;
}
.footer-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}

.footer-logo-img {
  width: 120px;
  height: 70px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 1.1;
}
.footer-nav {
  display: flex;
  gap: 36px;
}

.footer-app-store {
  display: flex;
  align-items: center;
}

.app-store-icon-footer {
  width: 120px;
  height: 40px;
  object-fit: contain;
  transition: opacity 0.2s;
}

.app-store-icon-footer:hover {
  opacity: 0.8;
}

.footer-link {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link.active,
.footer-link:hover {
  color: #b69cff;
}
.footer-link.active::after,
.footer-link:hover::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(151,71,255,0) 0%, #9747FF 100%);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 2px;
}
.footer-bottom {
  width: 100%;
  text-align: left;
  margin-top: 32px;
}
.footer-disclaimer {
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 16px;
  color: #bcbcbc;
}

.footer-disclaimer-text {
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 14px;
  color: #bcbcbc;
  line-height: 1.4;
  margin-top: 16px;
  max-width: 800px;
}
@media (max-width: 900px) {
  .footer-content {
    width: 95vw;
    padding: 32px 0 16px 0;
    gap: 24px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-nav {
    gap: 20px;
  }
  .footer-logo-text {
    font-size: 16px;
  }
  .footer-app-store {
    align-self: flex-end;
  }
  .footer-disclaimer-text {
    font-size: 12px;
    margin-top: 12px;
  }
}

.policy-section {
  width: 100vw;
  background: #faf9fc;
  padding: 64px 0 64px 0;
}
.policy-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.policy-title {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: #0F172A;
  margin-bottom: 32px;
}
.policy-subtitle {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #0F172A;
  margin: 32px 0 12px 0;
}
.policy-text {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #23263b;
  margin-bottom: 12px;
}

.policy-list {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #23263b;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 20px;
}

.policy-list li {
  margin-bottom: 8px;
}

.policy-table {
  margin-bottom: 32px;
  overflow-x: auto;
}

.policy-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.policy-table th,
.policy-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-family: 'Geologica', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.policy-table th {
  background-color: #f8fafc;
  font-weight: 600;
  color: #0F172A;
}

.policy-table td {
  color: #374151;
}
@media (max-width: 900px) {
  .policy-content {
    width: 95vw;
    gap: 20px;
  }
  .policy-title {
    font-size: 36px;
  }
  .policy-subtitle {
    font-size: 22px;
  }
  .policy-section {
    padding: 32px 0 32px 0;
  }
  .policy-table {
    font-size: 14px;
  }
  .policy-table th,
  .policy-table td {
    padding: 8px;
    font-size: 14px;
  }
}

.offers-section {
  width: 100vw;
  background: #faf9fc;
  padding: 64px 0 64px 0;
}
.offers-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.offers-title {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: #0F172A;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .offers-content {
    width: 95vw;
    gap: 20px;
  }
  .offers-title {
    font-size: 36px;
  }
  .offers-section {
    padding: 32px 0 32px 0;
  }
}
.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.offer-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(151,71,255,0.08);
  padding: 32px;
  transition: box-shadow 0.2s;
}
.offer-card:hover {
  box-shadow: 0 8px 32px rgba(151,71,255,0.12);
}
.offer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.offer-logo {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 12px;
}
.offer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.offer-info {
  flex: 1;
  display: flex;
  gap: 48px;
}
.offer-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-label {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #64758B;
}
.offer-value {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0F172A;
}
.offer-button {
  flex-shrink: 0;
}
.btn-details {
  background: #0F172A;
  color: #fff;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 16px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-details:hover {
  background: #23263b;
}
.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.offer-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-stars {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFB800;
}
.rating-count {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #64758B;
}
.offer-tags {
  display: flex;
  gap: 12px;
}
.offer-tag {
  background: #f3eeff;
  color: #64758B;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .offer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .offer-info {
    width: 100%;
    gap: 24px;
  }
  .offer-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .offer-tags {
    flex-wrap: wrap;
  }
  .offer-card {
    padding: 24px 16px;
  }
} 

.partners-info-section {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid #e5e5e5;
}
.partners-info-title {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #0F172A;
  text-align: center;
  margin-bottom: 24px;
}
.partners-info-desc {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #64758B;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.partner-info-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px;
}
.partner-name {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0F172A;
}
.info-icon {
  width: 24px;
  height: 24px;
  background: #9747FF;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.partner-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-row.representative {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.detail-label {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #64758B;
}
.detail-value {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0F172A;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .partner-info-card {
    padding: 24px 16px;
  }
  .partners-info-section {
    margin-top: 48px;
    padding-top: 32px;
  }
  .partners-info-title {
    font-size: 24px;
  }
  .partners-info-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }
} 