* {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    body {
      background: #f9f9f9;
      color: #222;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding-top: 80px;
      overflow-x: hidden;
    }
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      z-index: 999;
      box-sizing: border-box;
      width: 100vw;
    }
    .logo {
      font-weight: 800;
      font-size: 1.8rem;
      color: #f4b41a;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      gap: 10px;
      user-select: none;
    }
    nav {
      display: flex;
      gap: 25px;
      align-items: center;
    }
    nav a, .dropbtn {
      color: #f4b41a;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s ease;
      user-select: none;
      cursor: pointer;
      position: relative;
      padding: 6px 10px;
      border-radius: 8px;
    }
    nav a:hover, .dropbtn:hover {
      color: #fff;
      text-shadow: 2px 2px 5px #f4b41a;
      background: rgba(244, 180, 26, 0.15);
    }
    .burger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      width: 32px;
      height: 24px;
      justify-content: center;
      user-select: none;
      z-index: 1100;
    }
    .burger span {
      background: #f4b41a;
      height: 4px;
      border-radius: 3px;
      transition: all 0.4s ease;
    }
    .burger span:nth-child(1) { width: 100%; }
    .burger span:nth-child(2) { width: 70%; }
    .burger span:nth-child(3) { width: 40%; }
    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
      width: 100%;
    }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
      width: 100%;
    }
    /* Dropdown */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background: #2a5298;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.3);
      min-width: 220px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      user-select: none;
    }
    .dropdown-content a {
      padding: 10px 20px;
      color: #f4b41a;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border-radius: 6px;
    }
    .dropdown-content a:hover {
      background: #1e3c72;
      color: #fff;
    }
    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: 0;
        background: #2c5364;
        padding: 15px 25px;
        border-radius: 15px;
        width: 100%;
        max-width: 280px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.6);
        z-index: 1000;
        display: none;
        user-select: none;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        scroll-behavior: smooth;
      }
      nav.active { display: flex; }
      .burger { display: flex; }
      .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height 0.35s ease, opacity 0.35s ease, visibility 0.35s ease, padding 0.35s ease;
        width: 100%;
      }
      .dropdown-content a {
        padding-left: 40px;
        padding-top: 12px;
        padding-bottom: 12px;
        background: rgba(244, 180, 26, 0.1);
        margin: 3px 0;
        border-radius: 8px;
      }
      .dropdown-content a:hover {
        background: rgba(244, 180, 26, 0.3);
      }
      .dropdown.active .dropdown-content {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        padding-top: 8px;
        padding-bottom: 8px;
      }
    }
    main {
      max-width: 1000px;
      margin: 0 auto 60px;
      padding: 0 10px;
      flex-grow: 1;
      width: 100%;
      box-sizing: border-box;
    }
    
    
    .first-block-clean {
	max-width: 900px;
	margin: 25px auto;
	padding: 30px 20px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	user-select: none;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #203a43;
}
.first-block-clean .title {
	font-size: 2rem;
	font-weight: 700;
	color: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	position: relative;
	margin-bottom: 24px;
	padding-bottom: 12px;
	letter-spacing: 0.8px;
	line-height: 1.2;
	user-select: text;
}
 .first-block-clean .title::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width:100%;         /* удлинил */
 height: 3px;          /* сделал толще */
 background: #f4b41a;
 border-radius: 2px;
}
.first-block-clean .content-wrapper {
	display: flex;
	align-items: center;
	gap: 36px;
}
.first-block-clean .image {
	flex-shrink: 0;
	width: 320px;
	height: 220px;
	border-radius: 14px;
	object-fit: cover;
	box-shadow: 0 8px 22px rgba(244, 180, 26, 0.35);
	transition: transform 0.3s ease;
	cursor: pointer;
}
.first-block-clean .image:hover {
	transform: scale(1.04);
}
.first-block-clean .description {
	font-size: 1.125rem;
	line-height: 1.7;
	font-weight: 400;
	color: #444;
	border-left: 4px solid #f4b41a;
	padding-left: 15px;
	margin-top: 0;
	max-width: 520px;
	user-select: text;
}
 @media (max-width: 720px) {
 .first-block-clean .content-wrapper {
 flex-direction: column;
 gap: 25px;
}
 .first-block-clean .image {
 width: 100%;
 height: auto;
 max-height: 220px;
}
 .first-block-clean .description {
 max-width: 100%;
 text-align: center;
 border-left: none;
 padding-left: 0;
}
}
.benefits-block {
	max-width: 900px;
	margin: 0 auto 60px;
	padding: 30px 20px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	user-select: none;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #203a43;
}
.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: #f4b41a;
	margin-bottom: 28px;
	position: relative;
	padding-bottom: 8px;
	letter-spacing: 0.8px; 
	line-height: 1.2;
}
 .section-title::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100px;
 height: 5px;
 background: #f4b41a;
 border-radius: 4px;
}
/*бенефіс*/

.benefits-block.strict {
	max-width: 900px;
	margin: 0 auto 25px;
	padding: 40px 30px;
	background: #0f2027;
	color: #f4b41a; /* Жовтий текст буде класно контрастувати */
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	user-select: none;
}
.benefits-block.strict .section-title {
	font-size: 2.0rem;
	font-weight: 900;
	color: #f4b41a;
	margin-bottom: 40px;
	padding-bottom: 10px;
	letter-spacing: 1.1px;
	user-select: text;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}
.benefit-card {
	background: #203a43;
	border-radius: 12px;
	padding: 28px 25px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
	cursor: default;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	color: #e1e8eb;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
	background-color: #2c5364;
	box-shadow: 0 6px 18px rgba(244, 180, 26, 0.6);
	color: #f4b41a;
}
.benefit-card .icon {
	font-size: 3.2rem;
	color: #f4b41a;
	transition: color 0.3s ease;
}
.benefit-card:hover .icon {
	color: #fff;
}
.benefit-card p {
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	margin: 0;
	color: inherit;
}
.benefit-card p strong {
	font-weight: 700;
	font-size: 1.3rem;
	margin-bottom: 8px;
	display: block;
}
 @media (max-width: 720px) {
 .benefits-block.strict {
 padding: 30px 20px;
}
 .benefits-block.strict .section-title {
 font-size: 2rem;
 margin-bottom: 30px;
}
 .benefits-grid {
 grid-template-columns: 1fr;
 gap: 25px;
}
 .benefit-card {
 padding: 22px 18px;
}
 .benefit-card .icon {
 font-size: 2.6rem;
}
 .benefit-card p {
 font-size: 1rem;
}
 .benefit-card p strong {
 font-size: 1.1rem;
}
}
.process-block.alt-style {
	max-width: 900px;
	margin: 0 auto 25px;
	padding: 50px 30px;
	background: #f9f9f9;
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	user-select: none;
	color: #203a43;
}
.process-block.alt-style .section-title {
	font-size: 2.0rem;
	font-weight: 900;
	color: #f4b41a;
	margin-bottom: 40px;
	padding-bottom: 10px;
	letter-spacing: 1.1px;
	user-select: text;
	text-align:left;
}
.process-steps {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.step {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	background: #fff;
	padding: 20px 25px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.3s ease;
}
.step:hover {
	box-shadow: 0 8px 25px rgba(244, 180, 26, 0.3);
}
.step-number {
	flex-shrink: 0;
	background: #f4b41a;
	color: #203a43;
	font-weight: 900;
	font-size: 2.2rem;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
	box-shadow: 0 3px 12px rgba(244, 180, 26, 0.5);
}
.step-text {
	font-size: 1.15rem;
	line-height: 1.6;
	font-weight: 600;
	color: #444;
	user-select: text;
}
.step-text strong {
	color: #203a43;
	font-weight: 700;
	user-select: text;
}
 @media (max-width: 720px) {
 .process-block.alt-style {
 padding: 40px 20px;
}
 .process-block.alt-style .section-title {
 font-size: 2rem;
 margin-bottom: 30px;
}
 .step {
 flex-direction: column;
 gap: 15px;
}
 .step-number {
 width: 44px;
 height: 44px;
 font-size: 1.8rem;
 margin-bottom: 5px;
}
 .step-text {
 font-size: 1.05rem;
}
}
/**/
.terms-block {
	max-width: 900px;
	margin: 0 auto 25px;
	padding: 45px 40px;
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #203a43;
	user-select: none;
	text-align: left;
}
.terms-block .section-title {
	font-size: 2.0rem;
	font-weight: 900;
	color: #f4b41a;
	margin-bottom: 25px;
	padding-bottom: 12px;
	letter-spacing: 1.3px;
}
.terms-description {
	font-size: 1.3rem;
	line-height: 1.7;
	color: #555;
	max-width: 700px;
	margin: 0 auto 40px;
	user-select: text;
}
.terms-wrapper {
	display: flex;
	justify-content: center;
	gap: 120px; /* Збільшив для симетрії */
	flex-wrap: wrap;
}
.term-item {
	max-width: 300px;
	flex: 1 1 300px; /* Фіксована ширина для однаковості */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.term-icon {
	font-size: 4rem;
	color: #f4b41a;
}
.term-value {
	font-size: 2.0rem;
	font-weight: 900;
	color: #203a43;
	user-select: text;
}
.term-label {
	font-size: 1.4rem;
	font-weight: 700;
	color: #555;
	user-select: text;
}
 @media (max-width: 720px) {
 .terms-block {
 padding: 35px 25px;
}
 .terms-block .section-title {
 font-size: 2.4rem;
 margin-bottom: 20px;
}
 .terms-description {
 font-size: 1.1rem;
 max-width: 90%;
 margin-bottom: 35px;
}
 .terms-wrapper {
 flex-direction: column;
 gap: 50px;
}
 .term-item {
 max-width: 100%;
 flex: unset;
}
 .term-icon {
 font-size: 3.2rem;
}
 .term-value {
 font-size: 2.8rem;
}
 .term-label {
 font-size: 1.2rem;
}
 }
 /**/

.contact-block {
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Verdana, Geneva, sans-serif;
  color: #203a43;
  user-select: none;
  text-align: left;
}

.contact-block .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f4b41a;
  margin-bottom: 40px;
  padding-bottom: 12px;
  letter-spacing: 1.2px;
  user-select: text;
}

/* Контейнери для контактів */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0; /* Приберемо, бо тепер використовуємо border */
}

/* Кожен контакт */
.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #203a43;
  padding: 15px 0;
  border-bottom: 1px solid #eee; /* Тонка лінія */
}

/* Лінію не ставимо останньому елементу */
.contact-item:last-child {
  border-bottom: none;
}

/* Іконки */
.contact-icon {
  font-size: 2.8rem;
  color: #f4b41a;
  flex-shrink: 0;
}

/* Загальний стиль посилань */
.contact-link {
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.3s ease;
  padding-bottom: 2px;
}

/* Підкреслення при ховері */
.contact-link:hover,
.contact-link:focus {
  border-color: #f4b41a;
  text-decoration: none;
}

/* Окремі кольори для різних контактів */
.contact-item.telegram .contact-link {
  color: #0088cc; /* Яскравий блакитний Telegram */
  border-color: transparent;
}

.contact-item.telegram .contact-link:hover,
.contact-item.telegram .contact-link:focus {
  border-color: #0088cc;
}

.contact-item.phone .contact-link {
  color: #27ae60; /* Зелений для телефону */
  border-color: transparent;
}

.contact-item.phone .contact-link:hover,
.contact-item.phone .contact-link:focus {
  border-color: #27ae60;
}

.contact-item.address .contact-link {
  color: #7f8c8d; /* Сірий для адреси */
  border-color: transparent;
}

.contact-item.address .contact-link:hover,
.contact-item.address .contact-link:focus {
  border-color: #7f8c8d;
}

@media (max-width: 720px) {
  .contact-block {
    padding: 40px 25px;
  }
  .contact-block .section-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .contact-item {
    gap: 18px;
    font-size: 1.1rem;
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .contact-icon {
    font-size: 2.4rem;
  }
}




/**/
.payment-delivery-simple {
	max-width: 900px;
	margin: 25px auto;
	padding: 50px 40px;
	background: #f4f6f8;
	border-radius: 12px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #34495e;
	user-select: none;
}
.payment-delivery-simple .section-title {
	font-size: 2.0rem;
	font-weight: 900;
	color:linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	margin-bottom: 40px;
	padding-bottom: 10px;
	letter-spacing: 1.2px;
	user-select: text;
	text-align:left;
}
.pd-item {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 20px 0;
	border-bottom: 1px solid #d6dbdf;
}
.pd-item:last-child {
	border-bottom: none;
}
.pd-icon {
	font-size: 3.6rem;
	color: #f4b41a;
	flex-shrink: 0;
	margin-top: 4px;
}
.pd-text h3 {
	margin: 0 0 8px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #2c3e50;
}
.pd-text p {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.5;
	color: #5d6d7e;
}
 @media (max-width: 720px) {
 .pd-item {
 flex-direction: column;
 gap: 12px;
 padding: 15px 0;
}
 .pd-icon {
 font-size: 3rem;
}
 .pd-text h3 {
 font-size: 1.5rem;
}
 .pd-text p {
 font-size: 1.05rem;
}
}
.nationwide-block {
  max-width: 900px;
  margin: 25px auto 25px;
  padding: 45px 40px;
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #203a43;
  text-align: left;
  user-select: none;
}

.nationwide-block .section-title {
  font-size: 2.0rem;
  font-weight: 900;
  color: #f4b41a;
  margin-bottom: 25px;
  padding-bottom: 10px;
  letter-spacing: 1.2px;
}

.nationwide-text {
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
}

.regions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #203a43;
  user-select: text;
}

.regions-list span {
  background: #f4b41a;
  color: #203a43;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(244,180,26,0.4);
  user-select: none;
  cursor: default;
  transition: background-color 0.3s ease;
}

.regions-list span:hover {
  background-color: #dfa90b;
}

@media (max-width: 720px) {
  .nationwide-block {
    padding: 35px 25px;
  }
  .nationwide-block .section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .nationwide-text {
    font-size: 1.1rem;
    max-width: 90%;
    margin-bottom: 30px;
  }
  .regions-list {
    gap: 14px;
    font-size: 1rem;
  }
  .regions-list span {
    padding: 6px 14px;
  }
}


