@charset "UTF-8";
/* Global Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 123, 255, 0.9);
  /* Полупрозрачный синий */
  z-index: 100;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  /* Эффект при скролле */
}
.header.scrolled {
  background-color: rgb(0, 123, 255);
}
.header .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img {
  height: 70px;
  cursor: pointer;
  transition: transform 0.3s;
}
.header .logo img:hover {
  transform: scale(1.05);
}
.header .navigation {
  display: flex;
  gap: 20px;
}
.header .navigation a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.header .navigation a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: white;
  left: 0;
  bottom: -2px;
  transition: width 0.3s;
}
.header .navigation a:hover {
  color: #ffdd57;
}
.header .navigation a:hover::after {
  width: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
  .navigation {
    display: none;
  }
  .header .burger {
    display: block;
  }
}
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

.navigation a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-size: 16px;
  transition: color 0.3s;
}

.navigation a:hover {
  color: #333333;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background-image: url("/assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* Оверлей */
  /* Контент */
  /* Анимация появления */
  /* Анимация заголовка */
  /* Красивая кнопка с анимацией */
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.7), rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeIn 1.5s ease-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .hero-title {
  font-size: 3.5em;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  animation: slideIn 1.5s ease-out forwards;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.8;
}
.hero .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 600;
  color: white;
  background-color: #007BFF;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 123, 255, 0.4);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.hero .btn-primary:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
  transform: translateY(-3px);
}

/* Why Choose Us */
.why-choose {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}
.why-choose .container {
  display: block;
}
.why-choose h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #007BFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.why-choose p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 40px;
}
.why-choose .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Две колонки */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-choose .why-item {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.why-choose .why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.why-choose .why-item i {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: white;
}
.why-choose .why-item h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: white;
}
.why-choose .why-item p {
  color: white;
  font-size: 1em;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
  /* Анимация появления */
}
.features .container {
  display: block;
}
.features h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #007BFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.features .feature-item {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.5s ease-in-out forwards;
  opacity: 0;
}
.features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.features .feature-item i {
  font-size: 3em;
  margin-bottom: 15px;
  color: #ffffff;
}
.features .feature-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: white;
}
.features .feature-item p {
  font-size: 1em;
  opacity: 0.9;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 0;
  /* Newsletter Popup */
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer .newsletter h3 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1.5em;
}
.footer .newsletter form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.footer .newsletter form input {
  flex: 1;
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 1em;
  outline: none;
}
.footer .newsletter form button {
  background-color: #007BFF;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.footer .newsletter form button:hover {
  background-color: #0056b3;
}
.footer .newsletter p {
  color: #cccccc;
  font-size: 0.9em;
}
.footer .footer-links {
  text-align: right;
}
.footer .footer-links p {
  margin-bottom: 10px;
  color: #cccccc;
}
.footer .footer-links nav a {
  color: #cccccc;
  text-decoration: none;
  margin: 0 5px;
}
.footer .footer-links nav a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer .footer-links {
    text-align: left;
  }
}
.footer .newsletter-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.footer .newsletter-popup.active {
  display: flex;
}
.footer .newsletter-popup-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.footer .newsletter-popup-content h3 {
  margin-bottom: 10px;
  font-size: 1.8em;
  color: #007BFF;
}
.footer .newsletter-popup-content p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.1em;
}
.footer .newsletter-popup-content .newsletter-close-btn {
  background-color: #007BFF;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.footer .newsletter-popup-content .newsletter-close-btn:hover {
  background-color: #0056b3;
}

/* Pop-up */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup .popup-content {
  background-color: white;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.4s ease-out forwards;
}
.popup h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #333;
}
.popup .btn-confirm {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.popup .btn-confirm:hover {
  background-color: #0056b3;
}

/* Анимация появления */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Services Section */
.services {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}
.services .container {
  display: block;
}
.services h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #007BFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.services p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 40px;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.services .service-item {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.services .service-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}
.services .service-item ul {
  list-style: none;
  padding: 0;
}
.services .service-item ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
.services .service-item ul li i {
  margin-right: 10px;
  color: #ffffff;
}
.services .service-item .btn-primary {
  margin-top: 20px;
  display: inline-block;
  background-color: #ffdd57;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.services .service-item .btn-primary:hover {
  background-color: #ffc107;
}

/* Hero Section */
.about-hero {
  background-color: #007BFF;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.about-hero .container {
  display: block;
}
.about-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
}
.about-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.about-content .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-content .about-grid .about-text h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #007BFF;
}
.about-content .about-grid .about-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}
.about-content .about-grid .about-text ul {
  list-style: none;
  padding: 0;
}
.about-content .about-grid .about-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.about-content .about-grid .about-text ul li i {
  margin-right: 10px;
  color: #007BFF;
}
.about-content .about-grid .about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* Hero Section */
.services-hero {
  background-color: #007BFF;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.services-hero .container {
  display: block;
}
.services-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
}
.services-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Content */
.services-content {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.services-content .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-content .service-item {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.services-content .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.services-content .service-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}
.services-content .service-item ul {
  list-style: none;
  padding: 0;
}
.services-content .service-item ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
.services-content .service-item ul li i {
  margin-right: 10px;
  color: #ffffff;
}
.services-content .service-item .btn-primary {
  margin-top: 20px;
  display: inline-block;
  background-color: #ffdd57;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.services-content .service-item .btn-primary:hover {
  background-color: #ffc107;
}

/* Hero Section */
.contact-hero {
  background-color: #007BFF;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.contact-hero .container {
  display: block;
}
.contact-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.contact-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.contact-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #007BFF;
  font-size: 2em;
}
.contact-form-section .container {
  display: block;
}
.contact-form-section form {
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-form-section form .form-group {
  margin-bottom: 20px;
}
.contact-form-section form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1em;
  color: #333;
}
.contact-form-section form .form-group input {
  width: 95%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}
.contact-form-section form .form-group input:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}
.contact-form-section form .btn-primary {
  width: 100%;
  background-color: #007BFF;
  color: white;
  padding: 12px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
}
.contact-form-section form .btn-primary:hover {
  background-color: #0056b3;
}

/* Hero Section */
.service-hero {
  background-color: #007BFF;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.service-hero .container {
  display: block;
}
.service-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
}
.service-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* Service Content */
.service-content {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}
.service-content .container {
  display: block;
}
.service-content h2 {
  margin-bottom: 30px;
  color: #007BFF;
}
.service-content ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.service-content ul li {
  margin-bottom: 15px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}
.service-content ul li i {
  margin-right: 10px;
  color: #007BFF;
}
.service-content .btn-primary {
  background-color: #007BFF;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background-color 0.3s;
}
.service-content .btn-primary:hover {
  background-color: #0056b3;
}

/* Hero Section */
.service-hero {
  background-color: #007BFF;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.service-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Service Description */
.service-description {
  padding: 60px 0;
  background: linear-gradient(135deg, #f1f4ff, #eaf0ff);
  border-bottom: 1px solid #ddd;
}
.service-description .container {
  display: block;
}
.service-description h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #007BFF;
  font-size: 2.2em;
}
.service-description p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
  text-align: center;
}
.service-description .description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.service-description .description-grid .description-text ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.service-description .description-grid .description-text ul li {
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
.service-description .description-grid .description-text ul li i {
  margin-right: 10px;
  color: #007BFF;
}
.service-description .description-grid .description-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.service-description .description-grid .description-image img {
  width: 100%;
  transition: transform 0.3s;
}
.service-description .description-grid .description-image:hover img {
  transform: scale(1.05);
}
.service-description .description-grid .description-image .image-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 123, 255, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
}

/* Адаптивность */
@media (max-width: 768px) {
  .description-grid {
    grid-template-columns: 1fr;
  }
}
/* How It Works */
.how-it-works {
  padding: 60px 0;
  background-color: #ffffff;
}
.how-it-works .container {
  display: block;
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007BFF;
  font-size: 2.2em;
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.how-it-works .step {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.how-it-works .step i {
  font-size: 3em;
  margin-bottom: 15px;
  color: white;
}
.how-it-works .step h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.how-it-works .step p {
  font-size: 1.1em;
  opacity: 0.9;
}
.how-it-works .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Benefits */
.service-benefits {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.service-benefits .container {
  display: block;
}
.service-benefits h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007BFF;
  font-size: 2.2em;
}
.service-benefits ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.service-benefits ul li {
  margin-bottom: 15px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}
.service-benefits ul li i {
  margin-right: 10px;
  color: #007BFF;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.faq-section .container {
  display: block;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007BFF;
  font-size: 2.2em;
}
.faq-section .faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.faq-section .faq-item h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}
.faq-section .faq-item p {
  font-size: 1.1em;
  color: #555;
}

/* Button Styles */
.btn-primary {
  background-color: #007BFF;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background-color 0.3s;
  display: inline-block;
  margin-top: 20px;
}
.btn-primary:hover {
  background-color: #0056b3;
}

/* Hero Section */
.service-hero {
  background-color: #0056b3;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.service-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Service Description */
.service-description {
  padding: 60px 0;
  background: linear-gradient(135deg, #f1f4ff, #eaf0ff);
  border-bottom: 1px solid #ddd;
}
.service-description h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #0056b3;
  font-size: 2.2em;
}
.service-description p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
  text-align: center;
}
.service-description .description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.service-description .description-grid .description-text ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.service-description .description-grid .description-text ul li {
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
.service-description .description-grid .description-text ul li i {
  margin-right: 10px;
  color: #0056b3;
}
.service-description .description-grid .description-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.service-description .description-grid .description-image img {
  width: 100%;
  transition: transform 0.3s;
}
.service-description .description-grid .description-image:hover img {
  transform: scale(1.05);
}
.service-description .description-grid .description-image .image-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 86, 179, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
}

/* How It Works */
.how-it-works {
  padding: 60px 0;
  background-color: #ffffff;
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0056b3;
  font-size: 2.2em;
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.how-it-works .step {
  background: linear-gradient(135deg, #0056b3, #003b80);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.how-it-works .step i {
  font-size: 3em;
  margin-bottom: 15px;
  color: white;
}
.how-it-works .step h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.how-it-works .step p {
  font-size: 1.1em;
  opacity: 0.9;
}
.how-it-works .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Benefits */
.service-benefits {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.service-benefits h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0056b3;
  font-size: 2.2em;
}
.service-benefits ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.service-benefits ul li {
  margin-bottom: 15px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}
.service-benefits ul li i {
  margin-right: 10px;
  color: #0056b3;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0056b3;
  font-size: 2.2em;
}
.faq-section .faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.faq-section .faq-item h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}
.faq-section .faq-item p {
  font-size: 1.1em;
  color: #555;
}

/* Button Styles */
.btn-primary {
  background-color: #0056b3;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background-color 0.3s;
  display: inline-block;
  margin-top: 20px;
}
.btn-primary:hover {
  background-color: #003b80;
}

/* Hero Section */
.policy-hero {
  background-color: #007BFF;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.policy-hero .container {
  display: block;
}
.policy-hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
}
.policy-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* Privacy Policy Content */
.policy-content {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.policy-content .container {
  display: block;
}
.policy-content h2 {
  margin-bottom: 15px;
  color: #007BFF;
}
.policy-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}
.policy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.policy-content ul li {
  margin-bottom: 10px;
  color: #555;
}
.policy-content a {
  color: #007BFF;
  text-decoration: none;
}
.policy-content a:hover {
  text-decoration: underline;
}

/* Reviews Page */
.reviews-page {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.reviews-page .review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.reviews-page .review-card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-page .review-card h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #007BFF;
}
.reviews-page .review-card .stars {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 1.1em;
}
.reviews-page .review-card p {
  font-size: 1em;
  color: #333;
}
.reviews-page .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=style.css.map */