 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Ubuntu', sans-serif;
        }

        body {
            background-color: #f1f1f1;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: #000;
            transition: all 0.3s ease;
        }

        .main-a
{
  color: #fff;
}

        .main-container {
            max-width: 1740px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* Навигация */
        nav {
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            color: #0f2182;
    font-weight: 600;
    font-weight: bold;
    font-size: 32px;
    text-decoration: none;
    position: relative;
        }

        .logo span {
            color: white; 
            -webkit-text-stroke: 1.5px #0f2182; 
            padding: 0 2px; 
        }

        nav .links a:not(:last-child) {
            margin-right: 20px;
        }

        nav .links a:hover {
            color: #0f2182;
        }

        nav .login button {
            padding: 8px 14px;
            border: none;
            cursor: pointer;
            background-color: transparent;
        }

        nav .login button.main-btn {
            font-weight: 400;
  font-size: 15px;
            background-color: #000;
            color: #fff;
            border-radius: 4px;
            margin-right: 14px;
        }

        /* Заголовок страницы */
        .page-header {
            text-align: center;
            padding: 60px 0 40px;
            position: relative;
        }

        .page-header h1 {
            font-size: 48px;
            color: #0f2182;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #0f2182;
            border-radius: 2px;
        }

        .page-header p {
            max-width: 800px;
            margin: 20px auto 0;
            font-size: 18px;
            color: #555;
        }

        /* Секции */
        .about-section {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-bottom: 40px;
            transition: all 0.3s ease;
        }

        .about-section:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .about-section h2 {
            color: #0f2182;
            font-size: 32px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #0f2182;
            border-radius: 2px;
        }

        .about-section p {
            margin-bottom: 20px;
            font-size: 17px;
            color: #555;
        }

        /* Наши ценности */
        .values-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .value-card {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid #eaeaea;
        }

        .value-card:hover {
            background: #0f2182;
            border-color: #0f2182;
            transform: translateY(-8px);
        }

        .value-card:hover * {
            color: #fff !important;
        }

        .value-icon {
            font-size: 50px;
            color: #0f2182;
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }

        .value-card p {
            color: #666;
            font-size: 16px;
        }

        /* Наша команда */
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .team-member {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .member-photo {
            height: 280px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: #0f2182;
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h3 {
            font-size: 20px;
            color: #0f2182;
            margin-bottom: 5px;
        }

        .member-info p {
            color: #777;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #f0f0f0;
            border-radius: 50%;
            color: #0f2182;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #0f2182;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Контактная информация */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            font-size: 24px;
            color: #0f2182;
            min-width: 40px;
            text-align: center;
            padding-top: 5px;
        }

        .contact-text h3 {
            font-size: 19px;
            margin-bottom: 5px;
            color: #333;
        }

        .contact-text p {
            color: #666;
            font-size: 16px;
        }

        .contact-form {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0f2182;
            box-shadow: 0 0 0 3px rgba(15, 33, 130, 0.1);
            outline: none;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: #0f2182;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: #09155e;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(15, 33, 130, 0.3);
        }





 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: rgba(0, 0, 0, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .modal-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .modal {
     background: #fff;
     border-radius: 18px;
     width: 100%;
     max-width: 500px;
     padding: 30px;
     position: relative;
     transform: translateY(30px);
     transition: transform 0.4s ease;
 }

 .modal-overlay.active .modal {
     transform: translateY(0);
 }

 .modal-close {
     position: absolute;
     top: 20px;
     right: 20px;
     font-size: 24px;
     cursor: pointer;
     color: #777;
     background: none;
     border: none;
     transition: all 0.3s ease;
 }

 .modal-close:hover {
     color: #0f2182;
     transform: rotate(90deg);
 }

 .modal-header {
     text-align: center;
     margin-bottom: 25px;
 }

 .modal-header h2 {
     color: #0f2182;
     font-size: 26px;
 }

 .modal-icon {
     font-size: 50px;
     color: #0f2182;
     margin-bottom: 15px;
 }

 .modal-body p {
     color: #555;
     text-align: center;
     margin-bottom: 25px;
     font-size: 16px;
 }

 .success-modal {
     text-align: center;
     max-width: 500px;
 }

 .success-icon {
     color: #4CAF50;
     font-size: 60px;
     margin-bottom: 20px;
 }

 .success-icon i {
     animation: bounce 0.5s;
 }

  .submit-order {
     width: 100%;
     background: #0f2182;
     color: #fff;
     border: none;
     padding: 15px;
     border-radius: 8px;
     font-size: 17px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .submit-order:hover {
     background: #09155e;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(15, 33, 130, 0.3);
 }

 @media (max-width: 768px) {
     .modal {
         width: 90%;
         margin: 0 auto;
     }
 }


footer {
  background-color: #0f2182;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 80px;
  width: 100%; 
}


.footer-content {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Равные промежутки */
  padding: 0 20px;
  gap: 40px; /* Для современных браузеров */
}

.footer-content > * {
  flex: 0 0 calc(33.33% - 27px); /* Ширина блоков с учётом gap */
  box-sizing: border-box;
}

.footer-section {
  padding: 10px;
}


.logo2 {
    color: #fff;
    font-weight: 600;
    font-weight: bold;
    font-size: 28px;
  margin-bottom: 20px;
  display: inline-block;

}

.logo2 span {
    color: #0f2182; 
    -webkit-text-stroke: 1.1px #fff; 
    padding: 0 2px; 
}

.footer-description {
  color: #c9d1f8;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #0f2182;
  transform: translateY(-3px);
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #fff;
}

.footer-links,
.footer-contacts {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #c9d1f8;
  transition: all 0.3s ease;
  font-size: 15px;
   display: block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contacts li {
  display: flex;
align-items: center;
  margin-bottom: 15px;
  color: #c9d1f8;
  font-size: 15px;
}

.footer-contacts i {
  margin-right: 12px;
  font-size: 18px;
  min-width: 20px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  color: #c9d1f8;
  font-size: 14px;
}

.payment-methods {
  display: flex;
  gap: 15px;
}

.payment-methods i {
  font-size: 28px;
  color: #c9d1f8;
  transition: color 0.3s ease;
}

.payment-methods i:hover {
  color: #fff;
}

/* Адаптивность */
@media (max-width: 768px) {
  footer {
    padding: 40px 30px 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}


