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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  background-color: #fff;
}

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

a:hover {
  color: #5c6bc0;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
  text-align: center;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: #5c6bc0;
  color: #fff;
}

.btn-primary:hover {
  background-color: #3949ab;
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: #5c6bc0;
  border: 1px solid #5c6bc0;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  color: #3949ab;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
}

.cookie-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 20px;
  display: none;
}

.cookie-popup.active {
  display: block;
}

.cookie-popup .cookie-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookie-popup .cookie-content h2 {
  margin-bottom: 15px;
}

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

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.header {
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 24px;
  font-weight: 700;
  color: #5c6bc0;
}

.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.header .main-nav ul a {
  color: #333;
  font-weight: 500;
}

.header .main-nav ul a:hover {
  color: #5c6bc0;
}

.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.header .mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(135deg, #2a3370, #4b59c0);
  background-image: url(./assets/1.png);
  background-size: cover;
  color: #fff;
  padding: 100px 0;
}

.hero .hero-content {
  max-width: 800px;
}

.hero .hero-content h1 {
  font-size: 42px;
  margin-bottom: 25px;
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.about .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about .about-content .about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.about .about-content .about-image:before {
  content: '';
  display: block;
  padding-top: 66%;
}

.about .about-content .about-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.strength {
  background-color: #f5f5f5;
}

.strength .strength-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.strength .strength-content .strength-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.strength .strength-content .strength-image:before {
  content: '';
  display: block;
  padding-top: 66%;
}

.strength .strength-content .strength-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services .services-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.services .services-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.services .services-list .service-item {
  background-color: #5c6bc0;
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .services-list .service-item:hover {
  background-color: #3949ab;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog {
  background-color: #f5f5f5;
}

.blog h2 {
  text-align: center;
  margin-bottom: 50px;
}

.blog .blog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog .blog-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog .blog-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog .blog-card .blog-image {
  position: relative;
}

.blog .blog-card .blog-image:before {
  content: '';
  display: block;
  padding-top: 60%;
}

.blog .blog-card .blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog .blog-card .blog-content {
  padding: 20px;
}

.blog .blog-card .blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog .blog-card .blog-content p {
  color: #666;
  margin-bottom: 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact form {
  max-width: 700px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.contact form .form-group.full-width {
  grid-column: 1 / -1;
}

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

.contact form .form-group label .required {
  color: #e53935;
}

.contact form .form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.contact form .form-group input:focus {
  outline: none;
  border-color: #5c6bc0;
  -webkit-box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.2);
          box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.2);
}

.contact form .form-message {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.contact form button {
  grid-column: 1 / -1;
  -ms-grid-column-align: center;
      justify-self: center;
  min-width: 150px;
}

.success-message {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.success-message .success-content {
  text-align: center;
}

.success-message .success-content h1 {
  margin-bottom: 30px;
}

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

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.footer .footer-content .footer-logo a {
  font-size: 24px;
  font-weight: 700;
  color: #5c6bc0;
}

.footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer .footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer .footer-bottom .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.footer .footer-bottom .social-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #5c6bc0;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .footer-bottom .social-links a:hover {
  background-color: #3949ab;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.footer .footer-bottom .social-links a img {
  width: 18px;
  height: 18px;
}

@media (max-width: 992px) {
  .about .about-content,
  .strength .strength-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services .services-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .blog .blog-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  .header .main-nav {
    display: none;
  }
  .header .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  .header .main-nav.active ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .header .mobile-menu-toggle {
    display: block;
  }
  .header .mobile-menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 6px);
            transform: rotate(45deg) translate(5px, 6px);
  }
  .header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .header .mobile-menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -6px);
            transform: rotate(-45deg) translate(5px, -6px);
  }
  .blog .blog-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  .hero {
    padding: 70px 0;
  }
  .hero .hero-content h1 {
    font-size: 32px;
  }
  .hero .hero-content p {
    font-size: 16px;
  }
  .cookie-popup .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .cookie-popup .cookie-buttons .btn {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */