/********** Template CSS **********/


@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #51636b;
    --light: #f1f8ff;
    --dark: #111a24;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.btn-primary {
  background-color: #a0a0c5;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}


.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #969696;
  transition: background-color 0.3s ease;
}
.detailsFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .detailsFlex{
    flex-direction: column;
  }
}
.detailsimg {
  width: 50%;
}
@media (max-width: 600px) {
  .detailsimg {
    width: 100%;
  }
}
.programFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .programFlex {
    flex-direction: column;
  }
}
.detailsimg2 {
  width: 50%;
}
@media (max-width: 600px) {
  .detailsimg2 {
    width: 100%;
  }
}
.reviews {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .reviews {
    flex-direction: column;
  }
}
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 400px;
  border: 1px solid #ffbeb2;
  padding: 40px;
  border-radius: 10px;
  background-color: #fffbfb;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #fff; 
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #d1bde1;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Footer ***/

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}
@media (max-width: 600px) {
  .contact-img {
    display: none;
  }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 40%;
    background: #171717;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #51636b;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #51636b;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #51636b;
    text-decoration: none;
    text-align: center !important;
}
.data p a:hover {
    text-decoration: underline;
}
.buttons {
    padding: 20px 0px;
    text-align: center;
}
.buttons .cookie-button {
    border: 2px solid #51636b;
    color: #fff;
    padding: 8px 0;
    background: #51636b;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}
.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #51636b;
}
#declineBtn {
    background-color: #fff;
    color: #51636b;
}
#declineBtn:hover {
    background-color: #51636b;
    color: #fff;
}



/* new styles  */

/* Загальні стилі */
:root {
  --bg-color: #454a4c;
  --header-bg: #3a3e40; /* Темніший фон для хедера */
  --accent-color: #a0a0c5;
  --secondary-accent: #51636b;
  --text-color: #ffffff;
  --divider-color: rgba(255, 255, 255, 0.1);
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.section-divider {
  height: 1px;
  background-color: var(--divider-color);
  margin: 0;
  width: 100%;
}

/* Стилі для хедера */
.site-header {
  padding: 1rem 0;
  width: 100%;
  z-index: 1030;
  background-color: var(--header-bg);
  transition: all 0.3s ease;
}

.site-header.fixed-top {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--text-color);
  transform: translateY(-2px);
}

/* Стилі для головного блоку */
.hero-section {
  position: relative;
  padding: 140px 0 100px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 79, 143, 0.3) 0%, rgba(81, 99, 107, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(79, 79, 143, 0.3);
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
}

/* Медіа-запити для адаптивності */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-section {
    padding: 130px 0 80px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 110px 0 50px;
  }
}
/* Стилі для блоку "О проекте" */
.about-section {
  padding: 90px 0;
  position: relative;
}

.about-section .row {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--bg-color), transparent);
}

.mission-section {
  padding: 70px 0;
  background-color: var(--secondary-accent);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.mission-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Стилі для блоку "Как это работает" */
.how-it-works {
  padding: 90px 0;
  position: relative;
}

.how-it-works-title {
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.step-item {
  padding: 2rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--divider-color);
}

.step-item:hover {
  transform: translateY(-10px);
  background-color: rgba(79, 79, 143, 0.1);
  border-color: var(--accent-color);
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
}

/* Стилі для блоку "Технологии" */
.tech-section {
  padding: 90px 0;
  background-color: var(--bg-color);
  position: relative;
}

.tech-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tech-description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.tech-item {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1.8rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--divider-color);
  display: flex;
  flex-direction: column;
}

.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(79, 79, 143, 0.1);
  border-color: var(--accent-color);
}

.tech-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #d1bde1;
}

.tech-item-text {
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.tech-images {
  margin-top: 3rem;
}

.tech-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.tech-image:hover {
  transform: scale(1.03);
}

/* Стилі для блоку "Кейсы успеха" */
.success-cases {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.success-cases::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 79, 143, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.success-title {
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}



.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.case-card {
  position: relative;
  border-radius: 16px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(79, 79, 143, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-card:hover::before {
  opacity: 1;
}

.case-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.case-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(79, 79, 143, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.case-icon .material-icons {
  font-size: 32px;
  color: var(--accent-color);
}

.case-person {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-color);
}

.case-location {
  font-size: 0.9rem;
  opacity: 0.7;
}

.case-body {
  font-size: 1rem;
  line-height: 1.6;
}

.case-result {
  margin-top: 15px;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.case-result .material-icons {
  margin-right: 8px;
  font-size: 18px;
}

/* Стилі для блоку "CTA" */
.cta-block {
  padding: 90px 0;
  background: linear-gradient(to right, var(--secondary-accent), var(--bg-color));
  position: relative;
  overflow: hidden;
}

.cta-block::before,
.cta-block::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: 1;
}

.cta-block::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.cta-block::after {
  background: radial-gradient(circle, rgba(79, 79, 143, 0.1) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.cta-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0);
}

.cta-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 79, 143, 0.3) 0%, transparent 80%);
  z-index: 1;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.cta-image-wrapper:hover .cta-image {
  transform: scale(1.05);
}

.cta-content {
  padding: 20px 0 20px 30px;
  position: relative;
}

.cta-heading {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #b8b8e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent-color);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--text-color);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(79, 79, 143, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(79, 79, 143, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button .material-icons {
  margin-right: 10px;
  font-size: 24px;
}

/* Стилі для блоку "Форма заявки" */
.form-block {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.form-block::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(81, 99, 107, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.form-container {
  position: relative;
  z-index: 1;
}

.form-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 8s ease;
}

.form-image-container:hover .form-image {
  transform: scale(1.1);
}

.form-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(69, 74, 76, 0.9), transparent);
  display: flex;
  align-items: center;
}

.form-image-overlay .material-icons {
  font-size: 32px;
  color: var(--accent-color);
  margin-right: 15px;
}

.form-image-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-content {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  height: 100%;
}

.form-title {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}



.form-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}



/* Стилі для блоку "Преимущества" */
.advantages-block {
  padding: 90px 0;
  background: linear-gradient(to bottom, var(--bg-color), var(--secondary-accent));
  position: relative;
}

.advantages-container {
  position: relative;
  z-index: 1;
}

.advantages-title {
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}


.advantage-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.advantage-card:hover .advantage-image img {
  transform: scale(1.1);
}

.advantage-icon {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.advantage-icon .material-icons {
  font-size: 24px;
  color: var(--text-color);
}

.advantage-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.advantage-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Стилі для блоку "Наша команда" */
.team-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 79, 143, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.team-container {
  position: relative;
  z-index: 1;
}

.team-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.team-title span {
  color: var(--accent-color);
}

.team-row {
  position: relative;
}

.team-content {
  padding: 30px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  height: 100%;
  position: relative;
  z-index: 1;
}

.team-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.team-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-stat {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 15px;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.team-stat:hover {
  transform: translateY(-5px);
  background-color: rgba(79, 79, 143, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number .material-icons {
  font-size: 24px;
  margin-right: 5px;
}

.stat-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

.team-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 400px;
}

.team-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 79, 143, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 5s ease;
}

.team-image-container:hover .team-image {
  transform: scale(1.1);
}

.team-label {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: rgba(79, 79, 143, 0.8);
  padding: 10px 20px 10px 30px;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 0 30px 30px 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.team-label .material-icons {
  margin-right: 10px;
}

/* Стилі для блоку "Наши ценности" */
.values-section {
  padding: 90px 0;
  background: linear-gradient(to right, var(--bg-color), var(--secondary-accent), var(--bg-color));
  position: relative;
  overflow: hidden;
}

.values-section::before,
.values-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.values-section::before {
  top: -200px;
  right: -200px;
}

.values-section::after {
  bottom: -200px;
  left: -200px;
}

.values-container {
  position: relative;
  z-index: 1;
}

.values-title {
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}


.values-list {
  counter-reset: values-counter;
}

.value-item {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  transition: all 0.3s ease;
  counter-increment: values-counter;
  display: flex;
  align-items: flex-start;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(79, 79, 143, 0.1);
}

.value-number {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-number::before {
  content: counter(values-counter);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.value-content {
  flex: 1;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.value-title .material-icons {
  margin-right: 10px;
  font-size: 24px;
}

.value-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .team-image-container {
    margin-top: 30px;
  }
  
  .value-item {
    flex-direction: column;
  }
  
  .value-number {
    margin-bottom: 20px;
  }
}
/* Стилі для блоку "Автоматизированные сервисы" */
.automated-services {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.automated-services::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 79, 143, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-title {
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}


.services-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.services-container {
  position: relative;
  z-index: 1;
}

.service-box {
  position: relative;
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid transparent;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
  background-color: rgba(79, 79, 143, 0.08);
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
  transition: all 0.4s ease;
}

.service-box:hover::before {
  width: 10px;
}

.service-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.service-name .material-icons {
  margin-right: 12px;
  font-size: 30px;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.criteria-section {
  margin-top: 50px;
  position: relative;
}

.criteria-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.criteria-list {
  display: grid;
  gap: 20px;
}

.criteria-item {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.criteria-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(81, 99, 107, 0.1);
}

.criteria-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.criteria-icon .material-icons {
  font-size: 25px;
  color: var(--text-color);
}

.criteria-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.criteria-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Стилі для блоку "Фриланс и проекты" */
.freelance-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, var(--bg-color), var(--secondary-accent) 120%);
  position: relative;
  overflow: hidden;
}

.freelance-section::before,
.freelance-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.freelance-section::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.freelance-section::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 79, 143, 0.1) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
}

.freelance-container {
  position: relative;
  z-index: 1;
}

.freelance-title {
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}



.freelance-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.freelance-row {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.freelance-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.freelance-text:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(79, 79, 143, 0.08);
}

.freelance-text p {
  position: relative;
  z-index: 1;
}

.freelance-text strong {
  color: var(--accent-color);
}

.freelance-img {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.freelance-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 5s ease;
}

.freelance-img:hover img {
  transform: scale(1.1);
}

.freelance-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 79, 143, 0.3) 0%, transparent 70%);
  z-index: 1;
}

.freelance-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.platform-badge {
  padding: 8px 15px;
  background-color: rgba(79, 79, 143, 0.2);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.platform-badge:hover {
  transform: translateY(-3px);
  background-color: var(--accent-color);
}

.platform-badge .material-icons {
  font-size: 16px;
  margin-right: 5px;
}

.tips-section {
  margin-top: 40px;
}

.tips-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.tips-title .material-icons {
  margin-right: 10px;
  font-size: 28px;
  color: var(--accent-color);
}

.tips-list {
  list-style-type: none;
  padding: 0;
  counter-reset: tips-counter;
}

.tips-item {
  position: relative;
  margin-bottom: 20px;
  padding: 20px 20px 20px 70px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  counter-increment: tips-counter;
  transition: all 0.3s ease;
}

.tips-item:hover {
  transform: translateX(10px);
  background-color: rgba(79, 79, 143, 0.08);
}

.tips-item::before {
  content: counter(tips-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.conclusion {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 30px;
  padding: 20px;
  border-left: 3px solid var(--accent-color);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0 15px 15px 0;
}

@media (max-width: 992px) {
  .freelance-row {
    flex-direction: column;
  }
  
  .freelance-img {
    min-height: 300px;
  }
}
/* Стилі для блоку "Контактная информация" */
.contact-section {
  padding: 90px 0;
  position: relative;
  background-color: var(--bg-color);
}

.contact-title {
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}



.contact-card {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--divider-color);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.contact-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(79, 79, 143, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background-color: var(--accent-color);
}

.contact-icon .material-icons {
  font-size: 35px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon .material-icons {
  color: var(--text-color);
}

.contact-type {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: var(--accent-color);
}

.contact-info {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  word-break: break-word;
}

.contact-info a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--text-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

.contact-btn .material-icons {
  margin-right: 8px;
  font-size: 18px;
}

/* Стилі для блоків статей */
.article-section {
  padding: 70px 0;
  position: relative;
}

.article-section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.article-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}


.article-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.article-text strong {
  color: var(--accent-color);
}

.steps-section {
  padding: 70px 0;
  background-color: var(--bg-color);
}

.steps-title {
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}


.step-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  border: 1px solid var(--divider-color);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.step-number {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 15px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
}

.step-image {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-image:hover img {
  transform: scale(1.05);
}