@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0f172a;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #6366f1;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #3438ed;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #e2e8f0;
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.header .main-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.header .main-nav .nav-list a {
  color: #e2e8f0;
  font-weight: 500;
}

.header .main-nav .nav-list a:hover {
  color: white;
}

.header .mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.header .mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}

.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #0f172a;
  padding: 20px;
  z-index: 999;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.mobile-menu .mobile-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

.mobile-menu .mobile-nav-list a {
  color: #e2e8f0;
  font-size: 1.2rem;
}

.mobile-menu .mobile-nav-list a:hover {
  color: white;
}

.hero {
  padding: 150px 0 100px;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.hero-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.hero-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.hero-text .btn {
  margin-top: 20px;
}

.hero-text .btn span {
  margin-left: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero-text .btn:hover span {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.about {
  padding: 100px 0;
  background-color: #131d35;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.about-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}

.about-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6366f1;
}

.services {
  padding: 100px 0;
}

.services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.services .service-card {
  background-color: #16213d;
  border-radius: 8px;
  padding: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services .service-card .service-icon {
  margin-bottom: 20px;
}

.services .service-card .service-icon img {
  width: 60px;
  height: 60px;
}

.services .service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
}

.services .service-card p {
  color: #e2e8f0;
  font-size: 0.95rem;
}

.specialization {
  padding: 100px 0;
  background-color: #131d35;
}

.specialization h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: white;
}

.specialization-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.specialization-card {
  background-color: #16213d;
  border-radius: 8px;
  padding: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.specialization-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.specialization-card .specialization-icon {
  margin-bottom: 20px;
}

.specialization-card .specialization-icon img {
  width: 60px;
  height: 60px;
}

.specialization-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: white;
}

.specialization-card p {
  color: #e2e8f0;
  font-size: 0.95rem;
}

.contact {
  padding: 100px 0;
}

.contact h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: white;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

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

.contact form .form-group input {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  background-color: #16213d;
  border: 1px solid #1c2c50;
  color: white;
  font-family: 'Inter', sans-serif;
}

.contact form .form-group input:focus {
  outline: none;
  border-color: #6366f1;
}

.contact form .form-group input::-webkit-input-placeholder {
  color: #94a3b8;
}

.contact form .form-group input:-ms-input-placeholder {
  color: #94a3b8;
}

.contact form .form-group input::-ms-input-placeholder {
  color: #94a3b8;
}

.contact form .form-group input::placeholder {
  color: #94a3b8;
}

.contact form .form-group button {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.footer {
  padding: 50px 0 20px;
  background-color: #0b111f;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.footer-nav ul a {
  color: #e2e8f0;
  font-weight: 500;
}

.footer-nav ul a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1c2c50;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

.cookies-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background-color: #16213d;
  border-radius: 8px;
  padding: 20px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookies-popup.active {
  opacity: 1;
  visibility: visible;
}

.cookies-popup-content p {
  margin-bottom: 20px;
}

.cookies-popup-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.cookies-popup-buttons .btn-primary, .cookies-popup-buttons .btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.cookies-popup-buttons .btn-primary {
  background-color: #6366f1;
  color: white;
}

.cookies-popup-buttons .btn-primary:hover {
  background-color: #3438ed;
}

.cookies-popup-buttons .btn-secondary {
  background-color: transparent;
  color: #e2e8f0;
}

.cookies-popup-buttons .btn-secondary:hover {
  color: white;
}

@media (max-width: 992px) {
  .hero-content, .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-image, .about-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .services-grid, .specialization-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .main-nav {
    display: none;
  }
  .header .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .services-grid, .specialization-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer-content, .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .about, .services, .specialization, .contact {
    padding: 60px 0;
  }
  .about-text h2, .contact h2, .specialization h2 {
    font-size: 1.7rem;
  }
  .cookies-popup {
    padding: 15px;
  }
  .cookies-popup-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .cookies-popup-buttons .btn-primary, .cookies-popup-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .page h1 {
    font-size: 2rem;
  }
}

.page-content {
  padding-top: 180px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 70dvh;
}

.page h1 {
  font-size: 2.5rem;
}
/*# sourceMappingURL=style.css.map */