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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0a1920;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: black;
}

.btn.btn-outline {
  background-color: transparent;
  border: 2px solid #0a1920;
  color: #0a1920;
}

.btn.btn-outline:hover {
  background-color: #0a1920;
  color: #fff;
}

.btn.btn-dark {
  background-color: #0a1920;
  color: #fff;
}

.btn.btn-dark:hover {
  background-color: #163747;
}

header {
  background-color: #0a1920;
  color: #fff;
  padding: 1rem 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav .nav-container {
  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;
}

.main-nav a {
  padding: 0.5rem 1rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.main-nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.5rem 0;
}

.hero {
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 32, 0.7);
}

.hero .hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-content h1 {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero .hero-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.statistics {
  padding: 4rem 0;
  background-color: #d1e7f1;
}

.statistics .stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.statistics .stats-grid .stat-item {
  text-align: center;
}

.statistics .stats-grid .stat-item h2 {
  font-size: 3rem;
  color: #0a1920;
  margin-bottom: 0.5rem;
}

.statistics .stats-grid .stat-item p {
  font-size: 1rem;
}

.about {
  padding: 4rem 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.about p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.services {
  padding: 4rem 0;
  background-color: #d1e7f1;
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.services .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: 2rem;
}

.services .services-grid .service-card {
  background-color: #0a1920;
  color: #fff;
  padding: 2rem;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .services-grid .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 .services-grid .service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.services .services-grid .service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonials {
  padding: 4rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials .testimonials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonials .testimonials-grid .testimonial-card {
  background-color: #d1e7f1;
  padding: 2rem;
  border-radius: 5px;
}

.testimonials .testimonials-grid .testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonials .testimonials-grid .testimonial-card h4 {
  font-weight: 600;
  margin-bottom: 0;
}

.testimonials .testimonials-grid .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.contact {
  padding: 4rem 0;
  background-color: #0a1920;
  color: #fff;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.contact form .form-group {
  margin-bottom: 1.5rem;
}

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

.contact form .form-group input,
.contact form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: #0a1920;
}

.contact form .form-group input:focus,
.contact form .form-group textarea:focus {
  outline: none;
  border-color: #0a1920;
}

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

.contact form button {
  background-color: #d1e7f1;
  width: 100%;
}

footer {
  background-color: #0a1920;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

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;
  margin-bottom: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footer-content .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

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

footer .footer-content .footer-links a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

footer .footer-bottom .social-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .footer-bottom .social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.success-page {
  padding: 8rem 0;
  text-align: center;
}

.success-page .success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-page .success-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.success-page .success-content h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 1000;
  display: none;
}

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

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

.cookie-banner .cookie-content h2 {
  margin-bottom: 1rem;
}

.cookie-banner .cookie-content p {
  margin-bottom: 1.5rem;
}

.cookie-banner .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .main-nav .nav-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-nav .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  footer .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .cookie-banner .cookie-content .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-banner .cookie-content .cookie-buttons button {
    width: 100%;
  }
}

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

.pr-page {
  margin-top: 100px;
  margin-bottom: 100px;
}
