html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

progress {
  vertical-align: baseline;
  display: inline-block;
}

a:active,
a:hover {
  outline: 0;
}

strong {
  font-weight: bold;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

h2 {
  margin-top: 10px;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

ul,
ol,
li {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

a {
  color: #004d40;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  outline: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  border: 0;
  height: auto;
}

.text-uppercase {
  text-transform: uppercase;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  box-sizing: border-box;
}

.main {
  flex: 1 0 auto;
}

a {
  text-transform: none;
  margin: 0;
  padding: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  max-width: 1680px;
  padding: 0px 10px;
  width: 100%;
  margin: 0 auto;
}

footer,
header,
menu,
nav,
section {
  display: block;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
  text-align: center;
}

h3 {
  margin: 10px 0px;
  padding: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

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

.index-container {
  max-width: 1680px;
  padding: 0px 10px;
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #2e6d57;
  transition: color 0.3s ease;
}

a:hover {
  color: #1a3c34;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

h1 {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
}

h2 {
  font-size: 1rem;
  color: #000;
}

h3 {
  font-size: 1.2rem;
  color: #000;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.4rem;
  }
}

.index-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.index-header {
  background-color: #2e2bc2;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease;
}

.index-header:hover {
  background-color: #2e2bc2;
}

.index-header .index-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-logo a {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.index-logo a:hover {
  color: #0096aa;
  text-shadow: 0 0 10px rgba(0, 150, 136, 0.7);
}

.index-nav ul {
  display: flex;
  list-style: none;
}

.index-nav li {
  margin-left: 30px;
}

.index-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.index-nav a:hover {
  color: #009688;
  transform: translateY(-2px);
}

.index-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.index-burger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.index-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.index-burger.active span:nth-child(2) {
  opacity: 0;
}

.index-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .index-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #2e2bc2;
    padding: 20px;
  }

  .index-nav ul.active {
    display: flex;
  }

  .index-nav li {
    margin: 10px 0;
    text-align: center;
  }

  .index-burger {
    display: flex;
  }
}

.index-main {
  padding: 10px;
  background-color: #0a3558;
}

/* Hero Section */
.index-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 80vh;
  padding: 40px 5px;
  overflow: hidden;
  @media (max-width: 1024px) {
    min-height: auto;
  }
}

.index-hero-content {
  flex: 1;
  max-width: 50%;
  z-index: 2;
  animation: slideInLeft 1s ease-in-out;
}

.index-hero-title {
  font-size: 3rem;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  margin-bottom: 20px;
}

.index-hero-text {
  font-size: 1.2rem;
  color: #e6e6fa;
  line-height: 1.6;
  margin-bottom: 30px;
}

.index-hero-cta {
  background: linear-gradient(to right, #1de9b6, #ff6e40);
  padding: 15px 30px;
  border-radius: 50px;
  color: #2a1a5e;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.index-hero-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.index-hero-cta:hover::before {
  width: 300px;
  height: 300px;
}

.index-hero-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.6);
}

.index-hero-decor {
  flex: 1;
  position: relative;
}

.index-hero-decor-circle {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 233, 182, 0.3), transparent);
  border-radius: 50%;
  animation: pulse 4s infinite ease-in-out;
}

.index-hero-decor-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231de9b6" fill-opacity="0.3" d="M0,192L48,176C96,160,192,128,288,138.7C384,149,480,203,576,213.3C672,224,768,192,864,181.3C960,171,1056,181,1152,197.3C1248,213,1344,235,1392,245.3L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,0,320Z"></path></svg>')
    no-repeat bottom;
  animation: wave 6s infinite linear;
}

/* Intro Section */
.index-intro-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 40px 5px;
  position: relative;
}

.index-intro-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.index-intro-image {
  width: 100%;
  height: 400px;
  background: url("img/app-bg1.jpg") no-repeat center/cover;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.4);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.index-intro-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.index-intro-main {
  animation: slideInRight 1s ease-in-out;
}

.index-intro-main p {
  color: #fff;
}

.index-intro-main h2 {
  color: #c2185b;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.index-intro-cta {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(to right, #ff6e40, #1de9b6);
  color: #2a1a5e;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-intro-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 110, 64, 0.4);
}

/* Featured Section: Карусель */
.index-featured {
  padding: 60px 0;
  background: linear-gradient(to bottom, #a7ffeb, #2f619b);
}

.index-featured h2 {
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.index-featured-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.index-featured-card {
  flex: 0 0 300px;
  background: #1c909169;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(29, 233, 182, 0.2);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.index-featured-card:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 10px 20px rgba(29, 233, 182, 0.4);
}

.index-featured-card img {
  height: 180px;
  width: 100%;
}

.index-featured-card h3 {
  color: #fff;
  padding: 5px 15px;
}

.index-featured-card p {
  color: #2a1a5e;
  padding: 0 15px 15px;
}

/* Why Section */
.index-why-container {
  padding: 40px 5px;
  position: relative;
}

.index-why-container h2 {
  margin-bottom: 15px;
  color: #fff;
}

.index-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.index-why-item {
  background: rgba(167, 255, 235, 0.2);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: slideUp 0.8s ease forwards;
}

.index-why-item-offset {
  transform: translateY(50px);
}

.index-why-item h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.index-why-item p {
  color: #e6e6fa;
}

.index-why-item::before {
  content: "🌟";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 2rem;
  opacity: 0.5;
}

/* Testimonials Section: Полноэкранный слайдер */
.index-testimonials {
  padding: 60px 0;
  background: linear-gradient(45deg, #1de9b6, #e6e6fa);
}

.index-testimonials h2 {
  color: #c2185b;
  text-align: center;
  margin-bottom: 40px;
}

.index-testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.index-testimonial-card {
  flex: 0 0 100%;
  background: #1c909169;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(29, 233, 182, 0.2);
  text-align: center;
  scroll-snap-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.index-testimonial-card:hover {
  transform: scale(1.05);
  background: #a7ffeb;
}

.index-testimonial-card p {
  font-style: italic;
  color: #2a1a5e;
  margin-bottom: 15px;
}

.index-testimonial-card h4 {
  color: #ff6e40;
}

/* CTA Section */
.index-cta {
  padding: 40px 5px;
  position: relative;
}

.index-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.index-cta h2 {
  color: #ffd700;
  margin-bottom: 20px;
}

.index-cta p {
  color: #e6e6fa;
  margin-bottom: 30px;
}

.index-cta-btn {
  background: linear-gradient(to right, #ff6e40, #1de9b6);
  padding: 15px 30px;
  border-radius: 50px;
  color: #2a1a5e;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.index-cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.index-cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.index-cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(29, 233, 182, 0.6);
}

.index-cta-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="#1de9b6" stroke-width="2" stroke-dasharray="5 5" opacity="0.2"/></svg>')
    repeat;
  opacity: 0.3;
}

/* Анимации */
@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes wave {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 1440px bottom;
  }
}

/* Адаптивность */
@media (max-width: 1024px) {
  .index-hero-container {
    flex-direction: column;
    text-align: center;
  }
  .index-hero-content {
    max-width: 100%;
  }
  .index-hero-decor {
    display: none;
  }
  .index-intro-container {
    grid-template-columns: 1fr;
  }
  .index-intro-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .index-hero-title {
    font-size: 2rem;
  }
  .index-hero-text {
    font-size: 1rem;
  }
  .index-intro-main h2 {
    font-size: 1.8rem;
  }
  .index-featured-card {
    flex: 0 0 250px;
  }
}

.index-footer {
  background-color: #2e2bc2;
  color: #fff;
  padding: 40px 0 20px;
  position: relative;
}

.index-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(
    circle,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.1) 20px,
    rgba(255, 255, 255, 0.1) 40px
  );
  opacity: 0.5;
}

.index-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.index-footer-nav ul {
  list-style: none;
}

.index-footer-nav li {
  margin-bottom: 10px;
}

.index-footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.index-footer-nav a:hover {
  color: #05c9af;
  padding-left: 5px;
}

.index-footer-contacts ul {
  list-style: none;
}

.index-footer-contacts li {
  margin-bottom: 10px;
}

.index-footer-contacts a {
  color: #fff;
  text-decoration: none;
}

.index-footer-policies ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.index-footer-policies a {
  color: #fff;
  text-decoration: none;
}

.index-footer-copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .index-hero h1 {
    font-size: 2rem;
  }
  .index-intro {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .index-hero {
    padding: 30px 0;
  }
  .index-featured-grid {
    grid-template-columns: 1fr;
  }
  .index-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-main {
  padding: 10px;
}

.service-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ff3e94, #2196f3);
}

.service-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.service-hero:hover img {
  opacity: 0.5;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 62, 148, 0.4),
    rgba(33, 150, 243, 0.3)
  );
  animation: pulse 6s infinite ease-in-out;
}

.service-hero-content {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-hero a {
  background-color: #2e2bc2;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-hero a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.service-hero a:hover::after {
  width: 300px;
  height: 300px;
}

.service-hero a:hover {
  background-color: #2196f3;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
}

.service-featured {
  padding: 30px 0;
  background: linear-gradient(to bottom, #f0f4ff, #fff);
  position: relative;
}

.service-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 62, 148, 0.05) 10px,
    rgba(255, 62, 148, 0.05) 20px
  );
  opacity: 0.5;
}

.service-featured h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff3e94;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.service-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-featured-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff3e94, #2196f3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-featured-card:hover::before {
  opacity: 1;
}

.service-featured-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 10px 20px rgba(255, 62, 148, 0.3);
}

.service-featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-featured-card:hover img {
  transform: scale(1.1);
}

.service-featured-card h3 {
  padding: 15px;
  font-size: 1rem;
  color: #2196f3;
}

.service-featured-card p {
  padding: 0 15px 15px;
}

.service-impact {
  padding: 30px 0;
  background-color: #2196f3;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-impact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 62, 148, 0.3),
    transparent
  );
}

.service-impact h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-impact-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.service-impact-counter {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease;
}

.service-impact-counter:hover {
  transform: translateY(-5px);
}

.service-impact-counter:nth-child(1) {
  animation-delay: 0.2s;
}
.service-impact-counter:nth-child(2) {
  animation-delay: 0.4s;
}
.service-impact-counter:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-impact-counter h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-spotlight {
  padding: 30px 0;
  background: linear-gradient(45deg, #ff3e94, #f0f4ff);
}

.service-spotlight-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.service-spotlight-image {
  flex: 1;
  width: 100%;
  background: url("img/app-bg2.jpg") no-repeat center/cover;
  height: 400px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.service-spotlight-image:hover {
  box-shadow: 0 0 25px rgba(33, 150, 243, 0.4);
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .service-spotlight-content {
    flex-direction: column;
  }
}

.service-spotlight-text {
  flex: 1;
}

.service-spotlight h2 {
  font-size: 2rem;
  color: #ff3e94;
  margin-bottom: 20px;
}

.service-process {
  padding: 30px 0;
  background-color: #fff;
}

.service-process h2 {
  text-align: center;
  font-size: 2rem;
  color: #2196f3;
  margin-bottom: 40px;
}

.service-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.service-process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff3e94, #2196f3);
  transform: translateX(-50%);
}

.service-process-step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slideIn 0.8s ease forwards;
}

.service-process-step:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.service-process-step:nth-child(even) {
  text-align: left;
}

.service-process-step:nth-child(1) {
  animation-delay: 0.2s;
}
.service-process-step:nth-child(2) {
  animation-delay: 0.4s;
}
.service-process-step:nth-child(3) {
  animation-delay: 0.6s;
}
.service-process-step:nth-child(4) {
  animation-delay: 0.8s;
}
.service-process-step:nth-child(5) {
  animation-delay: 1s;
}

@keyframes slideIn {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.service-process-step h3 {
  font-size: 1rem;
  color: #ff3e94;
  margin-bottom: 10px;
}

.service-seasonal {
  padding: 30px 0;
  background: linear-gradient(135deg, #ff3e94, #2196f3);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-seasonal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="#fff" stroke-width="2" stroke-dasharray="5 5" opacity="0.1"/></svg>')
    repeat;
}

.service-seasonal h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-seasonal a {
  background-color: #fff;
  color: #2196f3;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-seasonal a:hover {
  background-color: #ff3e94;
  color: #fff;
  transform: scale(1.05);
}

.service-testimonials {
  padding: 30px 0;
  background-color: #f0f4ff;
}

.service-testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #2196f3;
  margin-bottom: 40px;
}

.service-testimonials-carousel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.service-testimonial-card {
  flex: 0 0 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-testimonial-card:hover {
  transform: translateY(-5px);
  background-color: #fef9e7;
}

.service-testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
}

.service-testimonial-card h4 {
  font-size: 1.2rem;
  color: #ff3e94;
}

.service-visual-story {
  padding: 30px 0;
  background: linear-gradient(to right, #fff, #f0f4ff);
}

.service-visual-story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.service-visual-story-image {
  flex: 2;
  width: 100%;
  background: url("img/app-bg3.jpg") no-repeat center/cover;
  height: 300px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.service-visual-story-image:hover {
  box-shadow: 0 0 25px rgba(255, 62, 148, 0.4);
  filter: brightness(1.1);
}

.service-visual-story-text {
  flex: 1;
}

.service-visual-story h2 {
  font-size: 2rem;
  color: #ff3e94;
  margin-bottom: 20px;
}

.service-why {
  padding: 30px 0;
  background-color: #2196f3;
  color: #fff;
  text-align: center;
  position: relative;
}

.service-why::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(255, 62, 148, 0.3), transparent);
}

.service-why h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-why-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-why-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.service-why-item:nth-child(1) {
  animation-delay: 0.2s;
}
.service-why-item:nth-child(2) {
  animation-delay: 0.4s;
}
.service-why-item:nth-child(3) {
  animation-delay: 0.6s;
}

.service-why-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-cta {
  background: linear-gradient(45deg, #ff3e94, #2196f3);
  color: #fff;
  text-align: center;
  padding: 40px 5px;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(30deg) translateX(0);
  }
  100% {
    transform: rotate(30deg) translateX(-100px);
  }
}

.service-cta-content {
  position: relative;
  z-index: 1;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.service-cta a {
  background-color: #2196f3;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-cta a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.service-cta a:hover::after {
  width: 300px;
  height: 300px;
}

.service-cta a:hover {
  background-color: #ff3e94;
  box-shadow: 0 0 20px rgba(255, 62, 148, 0.6);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .service-hero h1 {
    font-size: 2rem;
  }
  .service-spotlight-content {
    flex-direction: column;
  }
  .service-visual-story-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .service-hero {
    height: 70vh;
  }
  .service-featured-grid {
    grid-template-columns: 1fr;
  }
  .service-impact-counters {
    grid-template-columns: 1fr;
  }
  .service-why-list {
    grid-template-columns: 1fr;
  }
  .service-process-timeline::before {
    left: 20px;
  }
  .service-process-step {
    flex-direction: column !important;
    text-align: center !important;
  }
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-header {
  background: linear-gradient(135deg, #2e2bc2, #0288d1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.5s ease;
}

.about-header:hover {
  background: linear-gradient(135deg, #f57c00, #0277bd);
}

.about-header .about-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-logo a {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.about-logo a:hover {
  color: #fce4ec;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.about-nav ul {
  display: flex;
  list-style: none;
}

.about-nav li {
  margin-left: 30px;
}

.about-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-nav a:hover {
  color: #ffca28;
  transform: translateY(-2px);
}

.about-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.about-burger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.about-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.about-burger.active span:nth-child(2) {
  opacity: 0;
}

.about-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .about-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2e2bc2, #0288d1);
    padding: 20px;
  }

  .about-nav ul.active {
    display: flex;
  }

  .about-nav li {
    margin: 10px 0;
    text-align: center;
  }

  .about-burger {
    display: flex;
  }
}

.about-main {
  padding: 10px;
}

.about-intro {
  padding: 30px 0;
  background-color: #fff3e0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.about-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.1), transparent);
  z-index: 0;
}

.about-intro h2 {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.about-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.about-story {
  padding: 40px 5px;
  background: linear-gradient(to bottom, #e1f5fe, #fff);
  position: relative;
}

.about-story::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(2, 136, 209, 0.2), transparent);
}

.about-story h2 {
  text-align: center;
  font-size: 2rem;
  color: #0288d1;
  margin-bottom: 50px;
}

.about-story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-story-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #2e2bc2, #0288d1);
  transform: translateX(-50%);
}

.about-story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  width: 50%;
  transition: transform 0.3s ease;
}

.about-story-item:hover {
  transform: translateY(-5px);
}

.about-story-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 40px;
}

.about-story-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .about-story-item:nth-child(even) {
    left: auto;
  }
}

.about-story-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffca28;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255, 202, 40, 0.7);
}

.about-story-item:nth-child(odd)::before {
  right: 10px;
}

.about-story-item:nth-child(even)::before {
  left: 10px;
}

.about-story-item h3 {
  font-size: 1rem;
  color: #d81b60;
  margin-bottom: 10px;
}

.about-story-item p {
  color: #37474f;
}

@media (max-width: 768px) {
  .about-story-timeline::before {
    left: 20px;
  }
  .about-story-item {
    width: 100%;
    left: 0;
    padding-left: 40px;
    padding-right: 20px;
    text-align: left;
  }
  .about-story-item:nth-child(even) {
    padding-left: 40px;
  }
  .about-story-item::before {
    left: 10px;
  }
}

.about-founder {
  padding: 40px 5px;
  background-color: #0288d1;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-founder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 111, 0, 0.3),
    transparent
  );
}

.about-founder-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-founder-image {
  flex: 1;
  width: 100%;
  height: 400px;
  background: url("img/app-bg4.jpg") no-repeat center/cover;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-founder-image:hover {
  transform: scale(1.05);
}

.about-founder-text {
  flex: 1;
}

.about-founder-text blockquote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-founder-text cite {
  font-size: 1.2rem;
  color: #ffca28;
}

.about-commitment {
  padding: 40px 5px;
  background: linear-gradient(to right, #fff, #e3f2fd);
}

.about-commitment h2 {
  text-align: center;
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 50px;
}

.about-commitment-list {
  max-width: 800px;
  margin: 0 auto;
}

.about-commitment-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-commitment-item::before {
  content: "🌟";
  font-size: 2rem;
}

.about-commitment-item h3 {
  font-size: 1rem;
  color: #0288d1;
}

@media (max-width: 550px) {
  .about-commitment-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.about-impact {
  padding: 40px 5px;
  background-color: #fff;
  text-align: center;
}

.about-impact h2 {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 40px;
}

.about-impact-map {
  width: 100%;
  height: 400px;
  background: url("img/app-bg5.jpg") no-repeat center/cover;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10px;
  transition: filter 0.3s ease;
}

.about-impact-map:hover {
  filter: brightness(1.1);
}

.about-impact-map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 136, 209, 0.3);
  border-radius: 10px;
}

.about-team {
  padding: 40px 5px;
  background: linear-gradient(to bottom, #e1f5fe, #fff);
}

.about-team h2 {
  text-align: center;
  font-size: 2rem;
  color: #0288d1;
  margin-bottom: 50px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.about-team-card {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 111, 0, 0.2);
}

.about-team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.about-team-card:hover img {
  transform: rotate(5deg);
}

.about-team-card h3 {
  font-size: 1.3rem;
  color: #d81b60;
  margin-bottom: 5px;
}

.about-team-card p {
  color: #37474f;
  font-size: 1rem;
}

.about-why {
  padding: 40px 5px;
  background-color: #e3f2fd;
  text-align: center;
}

.about-why h2 {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 50px;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.about-why-item {
  padding: 20px;
  position: relative;
}

.about-why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.1), transparent);
  border-radius: 10px;
  z-index: 0;
}

.about-why-item h3 {
  font-size: 1rem;
  color: #0288d1;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.about-why-progress {
  background-color: #b0bec5;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.about-why-progress-bar {
  height: 100%;
  background: linear-gradient(to right, #2e2bc2, #0288d1);
  width: 0;
  animation: progress 2s ease forwards;
}

.about-why-item:nth-child(1) .about-why-progress-bar {
  width: 90%;
}
.about-why-item:nth-child(2) .about-why-progress-bar {
  width: 85%;
}
.about-why-item:nth-child(3) .about-why-progress-bar {
  width: 80%;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: inherit;
  }
}

.about-partners {
  padding: 40px 5px;
  background-color: #fff;
}

.about-partners h2 {
  text-align: center;
  font-size: 2rem;
  color: #0288d1;
  margin-bottom: 50px;
}

.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.about-partners-logo {
  background-color: #e1f5fe;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-partners-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(2, 136, 209, 0.3);
}

.about-partners-logo img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}

.about-gallery {
  padding: 40px 5px;
  background: linear-gradient(to right, #e1f5fe, #fff);
}

.about-gallery h2 {
  text-align: center;
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 50px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about-gallery-image {
  background: url("img/app-bg6.jpg") no-repeat center/cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 111, 0, 0.4);
}

.about-cta {
  background: linear-gradient(45deg, #d81b60, #0288d1);
  color: #fff;
  text-align: center;
  padding: 40px 5px;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(30deg) translateX(0);
  }
  100% {
    transform: rotate(30deg) translateX(-100px);
  }
}

.about-cta-content {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.about-cta a {
  background-color: #0288d1;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-cta a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.about-cta a:hover::after {
  width: 300px;
  height: 300px;
}

.about-cta a:hover {
  background-color: #d81b60;
  box-shadow: 0 0 20px rgba(216, 27, 96, 0.6);
  transform: translateY(-3px);
}

.about-footer {
  background: linear-gradient(to bottom, #0288d1, #2e2bc2);
  color: #fff;
  padding: 40px 0 20px;
  position: relative;
}

.about-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(
    circle,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.1) 20px,
    rgba(255, 255, 255, 0.1) 40px
  );
  opacity: 0.5;
}

.about-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.about-footer-nav ul,
.about-footer-contacts ul,
.about-footer-policies ul {
  list-style: none;
}

.about-footer-nav li,
.about-footer-contacts li {
  margin-bottom: 10px;
}

.about-footer-nav a,
.about-footer-contacts a,
.about-footer-policies a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.about-footer-nav a:hover,
.about-footer-contacts a:hover,
.about-footer-policies a:hover {
  color: #ffca28;
  padding-left: 5px;
}

.about-footer-policies ul {
  display: flex;
  gap: 20px;
}

.about-footer-copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .about-founder-content {
    flex-direction: column;
  }
  .about-founder-image {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    height: 300px;
    flex: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 2rem;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-cta h2 {
    font-size: 2rem;
  }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  background: linear-gradient(135deg, #0288d1, #2e2bc2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.5s ease;
}

.contact-header:hover {
  background: linear-gradient(135deg, #0277bd, #f57c00);
}

.contact-header .contact-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-logo a {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-logo a:hover {
  color: #fce4ec;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.contact-nav ul {
  display: flex;
  list-style: none;
}

.contact-nav li {
  margin-left: 30px;
}

.contact-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-nav a:hover {
  color: #ffca28;
  transform: translateY(-2px);
}

.contact-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.contact-burger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.contact-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.contact-burger.active span:nth-child(2) {
  opacity: 0;
}

.contact-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .contact-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0288d1, #2e2bc2);
    padding: 20px;
  }

  .contact-nav ul.active {
    display: flex;
  }

  .contact-nav li {
    margin: 10px 0;
    text-align: center;
  }

  .contact-burger {
    display: flex;
  }
}

.contact-main {
  padding: 10px;
}

.contact-hero {
  position: relative;
  height: 60vh;
  background: url("img/app-bg7.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(2, 136, 209, 0.5),
    rgba(255, 111, 0, 0.5)
  );
  animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

.contact-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  color: #fff;
}

.contact-map {
  padding: 30px 0;
  background-color: #fff;
  text-align: center;
}

.contact-map iframe {
  width: 100%;
}

.contact-map h2 {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 30px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-map iframe:hover {
  transform: scale(1.02);
}

.contact-facts {
  padding: 30px 0;
  background: linear-gradient(to bottom, #e1f5fe, #fff);
}

.contact-facts h2 {
  font-size: 2rem;
  color: #0288d1;
  margin-bottom: 40px;
}

.contact-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.contact-facts-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-facts-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(2, 136, 209, 0.2);
}

.contact-facts-item h3 {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 10px;
}

.contact-facts-item p {
  font-size: 1.1rem;
  color: #37474f;
}

.contact-details {
  padding: 30px 0;
  background-color: #0288d1;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-details::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 111, 0, 0.05) 10px,
    rgba(255, 111, 0, 0.05) 20px
  );
  opacity: 0.5;
}

.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.contact-details-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-details-list li {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-details-list a {
  color: #ffca28;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.contact-details-list a:hover {
  color: #fff;
  padding-left: 5px;
}

.contact-quote {
  padding: 40px 5px;
  background: linear-gradient(135deg, #d81b60, #0288d1);
  color: #fff;
  text-align: center;
  position: relative;
}

.contact-quote::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 111, 0, 0.3),
    transparent
  );
}

.contact-quote blockquote {
  font-size: 2rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.contact-faq {
  padding: 30px 0;
}

.contact-faq h2 {
  text-align: center;
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 40px;
}

.contact-faq details {
  background-color: #e1f5fe;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-faq details:hover {
  transform: translateY(-3px);
}

.contact-faq summary {
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  color: #0288d1;
  transition: background-color 0.3s ease;
}

.contact-faq summary:hover {
  background-color: #b3e5fc;
}

.contact-faq details[open] summary {
  background-color: #d81b60;
  color: #fff;
}

.contact-faq p {
  padding: 15px;
  color: #37474f;
}

.contact-closing {
  background: url("img/app-bg8.jpg") no-repeat center/cover fixed;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.contact-closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(2, 136, 209, 0.7),
    rgba(255, 111, 0, 0.7)
  );
}

.contact-closing-content {
  position: relative;
  z-index: 1;
}

.contact-closing h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-closing form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  color: #333;
}

.contact-closing input,
.contact-closing textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #b0bec5;
  border-radius: 5px;
}

.contact-closing button {
  background-color: #0288d1;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-closing button:hover {
  background-color: #d81b60;
  transform: scale(1.05);
}

.contact-closing .privacy {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-closing .privacy input {
  width: auto;
  margin-right: 10px;
}

.contact-closing .privacy a {
  color: #0288d1;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-closing .privacy a:hover {
  color: #d81b60;
}

.contact-footer {
  background: linear-gradient(to bottom, #2e2bc2, #0288d1);
  color: #fff;
  padding: 40px 0 20px;
}

.contact-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.contact-footer-nav ul {
  list-style: none;
}

.contact-footer-nav li {
  margin-bottom: 10px;
}

.contact-footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.contact-footer-nav a:hover {
  color: #ffca28;
  padding-left: 5px;
}

.contact-footer-contacts ul {
  list-style: none;
}

.contact-footer-contacts li {
  margin-bottom: 10px;
}

.contact-footer-contacts a {
  color: #fff;
  text-decoration: none;
}

.contact-footer-policies ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.contact-footer-policies a {
  color: #fff;
  text-decoration: none;
}

.contact-footer-copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
  }
  .contact-facts-grid {
    grid-template-columns: 1fr;
  }
  .contact-quote blockquote {
    font-size: 2rem;
  }
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 10px;
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #4a148c, #b388ff);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.contact-container::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(179, 136, 255, 0.3), transparent);
  animation: glow 8s ease-in-out infinite;
}

.contact-main {
  background: rgba(240, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px 5px;
  box-shadow: 0 10px 30px rgba(0, 128, 128, 0.2);
  position: relative;
  z-index: 1;
  color: #006666;
  animation: fadeIn 1s ease-in-out;
}
.contact-main::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(0, 128, 128, 0.1), transparent);
  z-index: -1;
  animation: pulse 5s infinite;
}
.contact-main h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(255, 99, 71, 0.2);
  transition: transform 0.3s ease;
}
.contact-main h1:hover {
  transform: scale(1.05);
}
.contact-main h2 {
  font-size: 1.6rem;
  color: #ff6347;
  margin: 30px 0 15px;
  font-weight: 600;
  position: relative;
}
.contact-main h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff6347, #20b2aa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.contact-main h2:hover::after {
  transform: scaleX(1);
}
.contact-main p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.7;
  transition: color 0.3s ease;
}
.contact-main p:hover {
  color: #ff4500;
}
.contact-main a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease, text-shadow 0.3s ease;
}
.contact-main a:hover {
  color: #20b2aa;
  text-decoration: underline wavy;
  text-shadow: 0 0 5px rgba(32, 178, 170, 0.5);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #e0ffff;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Poppins", Arial, sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  background: #f0f8ff;
  color: #006666;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6347;
  box-shadow: 0 0 10px rgba(255, 99, 71, 0.3);
  outline: none;
  background: #fffaf0;
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form button {
  padding: 15px 30px;
  background: linear-gradient(to right, #20b2aa, #ff4500);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}
.contact-form button:hover::before {
  left: 100%;
}
.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(32, 178, 170, 0.4);
  background: linear-gradient(to right, #ff4500, #20b2aa);
}
.contact-home-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(to right, #ff69b4, #20b2aa);
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: bounce 2s infinite alternate;
}
.contact-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
  background: linear-gradient(to right, #20b2aa, #ff69b4);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #fdf5e6, #fff3e0);
  position: relative;
  overflow: hidden;
}

.privacy-container::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.2), transparent);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.privacy-main {
  background-color: #fff8e1;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(255, 112, 67, 0.1);
  position: relative;
  z-index: 1;
}

.privacy-main h1 {
  text-align: center;
  font-size: 2.6rem;
  color: #ef6c00;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(239, 108, 0, 0.2);
}

.privacy-main h2 {
  font-size: 1.6rem;
  color: #f57f17;
  margin: 30px 0 15px;
  font-weight: 600;
  position: relative;
}

.privacy-main h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #f57f17, #ffab40);
  transition: width 0.3s ease;
}

.privacy-main h2:hover::after {
  width: 100px;
}

.privacy-main p {
  font-size: 1.05rem;
  color: #6d4c41;
  margin-bottom: 20px;
}

.privacy-main a {
  color: #f57f17;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease, box-shadow 0.3s ease;
}

.privacy-main a:hover {
  color: #ef6c00;
  text-decoration: underline wavy;
  box-shadow: 0 2px 4px rgba(239, 108, 0, 0.3);
}

.privacy-section {
  background-color: #ffebee;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #f57f17, #ffab40);
  transition: width 0.3s ease;
}

.privacy-section:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 28px rgba(245, 127, 23, 0.2);
  background-color: #fffde7;
}

.privacy-section:hover::before {
  width: 10px;
}

@media (max-width: 768px) {
  .privacy-main {
    padding: 20px;
  }

  .privacy-main h1 {
    font-size: 2rem;
  }

  .privacy-main h2 {
    font-size: 1.4rem;
  }

  .privacy-section {
    padding: 20px;
  }
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #fdf5e6, #fff3e0);
  position: relative;
  overflow: hidden;
}

.terms-container::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 112, 67, 0.2), transparent);
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.terms-main {
  background-color: #fff8e1;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(255, 112, 67, 0.1);
  position: relative;
  z-index: 1;
}

.terms-main h1 {
  text-align: center;
  font-size: 2.6rem;
  color: #ef6c00;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(239, 108, 0, 0.2);
}

.terms-main h2 {
  font-size: 1.6rem;
  color: #f57f17;
  margin: 30px 0 15px;
  font-weight: 600;
  position: relative;
}

.terms-main h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #f57f17, #ffab40);
  transition: width 0.3s ease;
}

.terms-main h2:hover::after {
  width: 100px;
}

.terms-main p {
  font-size: 1.05rem;
  color: #6d4c41;
  margin-bottom: 20px;
}

.terms-main a {
  color: #f57f17;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease, box-shadow 0.3s ease;
}

.terms-main a:hover {
  color: #ef6c00;
  text-decoration: underline wavy;
  box-shadow: 0 2px 4px rgba(239, 108, 0, 0.3);
}

.terms-section {
  background-color: #ffebee;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.terms-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #f57f17, #ffab40);
  transition: width 0.3s ease;
}

.terms-section:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 28px rgba(245, 127, 23, 0.2);
  background-color: #fffde7;
}

.terms-section:hover::before {
  width: 10px;
}

@media (max-width: 768px) {
  .terms-main {
    padding: 20px;
  }

  .terms-main h1 {
    font-size: 2rem;
  }

  .terms-main h2 {
    font-size: 1.4rem;
  }

  .terms-section {
    padding: 20px;
  }
}

.thanks-container {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #1e1e2f, #2a2a4e);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 20px auto;
  animation: fadeIn 1s ease-in-out;
}

.thanks-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.thanks-message {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.thanks-btn-home {
  display: inline-block;
  padding: 15px 30px;
  background: #ff007a;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 122, 0.4);
}

.thanks-btn-home:hover {
  background: #e6006b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 122, 0.6);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .thanks-title {
    font-size: 1.8em;
  }
  .thanks-message {
    font-size: 1em;
  }
  .thanks-container {
    padding: 20px;
  }
  .thanks-btn-home {
    padding: 12px 24px;
    font-size: 1em;
  }
}
