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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  color: #ff6b00;
}

ul {
  list-style: none;
}

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

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

h1 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

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

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

.btn-secondary {
  background-color: transparent;
  color: #ff6b00;
  border: 2px solid #ff6b00;
}

.btn-secondary:hover {
  background-color: #ff6b00;
  color: #fff;
}

.btn-full {
  width: 100%;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  display: none;
}

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

.cookie-popup .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

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

.cookie-popup .cookie-icon img {
  width: 60px;
  height: auto;
}

.cookie-popup h2 {
  text-align: left;
  margin-bottom: 15px;
}

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

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

@media (max-width: 576px) {
  .cookie-popup .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header {
  background-color: white;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header .logo a {
  font-weight: 700;
  font-size: 24px;
  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: 6px;
}

.header .logo img {
  height: 40px;
}

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

@media (max-width: 991px) {
  .header .main-nav ul {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .header .main-nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

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

.header .main-nav a:hover {
  color: #ff6b00;
}

.hero {
  background: linear-gradient(135deg, #0056b3, #00b3a4);
  color: #fff;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }
}

.hero .hero-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 350px;
      grid-template-columns: 1fr 350px;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .hero .hero-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero .hero-text h1 {
  margin-bottom: 20px;
}

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

.hero .hero-form {
  background-color: white;
  border-radius: 4px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero .hero-form h3 {
  color: #333;
  text-align: center;
  margin-bottom: 25px;
}

.hero .hero-form .form-group {
  margin-bottom: 15px;
}

.hero .hero-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
}

.hero .hero-form input:focus {
  outline: none;
  border-color: #ff6b00;
}

.innovation .innovation-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 450px 1fr;
      grid-template-columns: 450px 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .innovation .innovation-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.innovation .innovation-image img {
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.innovation .innovation-text h2 {
  text-align: left;
}

.innovation .innovation-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.steps {
  background-color: #f5f9fa;
}

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

@media (max-width: 768px) {
  .steps .steps-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.steps .step {
  background-color: white;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.steps .step h3 {
  color: #ff6b00;
  margin-bottom: 15px;
}

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

@media (max-width: 991px) {
  .advantages .advantages-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advantages .advantages-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.advantages .advantage {
  padding: 25px;
  background-color: #f5f9fa;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advantages .advantage h3 {
  color: #0056b3;
  margin-bottom: 15px;
}

.advantages .advantages-cta {
  text-align: center;
  margin-top: 40px;
}

.services {
  background-color: #f5f9fa;
}

.services .services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

@media (max-width: 991px) {
  .services .services-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services .services-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.services .service-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .service-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);
}

.services .service-card .service-image {
  height: 200px;
  overflow: hidden;
}

.services .service-card .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .service-card .service-content {
  padding: 25px;
}

.services .service-card .service-content h3 {
  margin-bottom: 15px;
  color: #0056b3;
}

.collaboration {
  padding-top: 100px;
}

.collaboration .collaboration-image {
  margin-bottom: 40px;
  text-align: center;
}

.collaboration .collaboration-image img {
  max-height: 300px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
  .collaboration .collaboration-steps {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.collaboration .collaboration-step {
  padding: 25px;
  background-color: #f5f9fa;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.collaboration .collaboration-step h3 {
  color: #ff6b00;
  margin-bottom: 15px;
}

.blog {
  background-color: white;
}

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

@media (max-width: 991px) {
  .blog .blog-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog .blog-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.blog .blog-card {
  background-color: #f5f9fa;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px 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:hover .blog-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog .blog-card .blog-image {
  height: 180px;
  overflow: hidden;
}

.blog .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.blog .blog-card .blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0056b3;
}

.blog .blog-card .blog-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact {
  background: linear-gradient(135deg, #0056b3, #00b3a4);
  color: #fff;
}

.contact h2 {
  color: #fff;
}

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

.contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact .contact-info {
  text-align: center;
}

.contact .contact-map {
  margin-bottom: 20px;
}

.contact .contact-map img {
  border-radius: 4px;
  max-height: 300px;
}

.contact .contact-details {
  margin-top: 20px;
}

.contact .contact-details a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact .contact-details a:hover {
  color: #ff6b00;
}

.footer {
  background-color: #111;
  color: #aaa;
  padding: 40px 0;
}

.footer .footer-content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.footer .footer-logo {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  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: 6px;
}

.footer .footer-logo img {
  height: 40px;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

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

@media (max-width: 576px) {
  .footer .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

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

.footer .footer-links a:hover {
  color: #ff6b00;
}

.footer .footer-copyright {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  section {
    padding: 60px 0;
  }
}

.success {
  background: linear-gradient(135deg, #0056b3, #00b3a4);
  color: #fff;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .success {
    padding: 80px 0;
  }
}

.success .success-content {
  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;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.privacy-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.privacy-content h1 {
  margin-bottom: 32px;
}
/*# sourceMappingURL=style.css.map */