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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Red Rose", cursive;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

a:hover {
  color: #f05050;
}

ul {
  list-style: none;
}

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

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

h1 {
  font-size: 2.25rem;
}

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

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

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

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}

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

@media (min-width: 1024px) {
  h3 {
    font-size: 1.75rem;
  }
}

p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-family: "Red Rose", cursive;
  font-size: 1rem;
}

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

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

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

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

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

.btn-outline:hover {
  background-color: #1c2641;
  color: #fff;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1c2641;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Red Rose", cursive;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #f47f7f;
  -webkit-box-shadow: 0 0 0 2px rgba(244, 127, 127, 0.2);
          box-shadow: 0 0 0 2px rgba(244, 127, 127, 0.2);
}

input.error,
textarea.error,
select.error {
  border-color: #e74c3c;
}

input.error:focus,
textarea.error:focus,
select.error:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
          box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

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

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

.cookie-banner .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner .cookie-content h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  text-align: left;
  font-size: 1.5rem;
}

.cookie-banner .cookie-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.cookie-banner .cookie-content p a {
  color: #f47f7f;
  text-decoration: underline;
}

.cookie-banner .cookie-content p a:hover {
  color: #f8aeae;
}

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

.cookie-banner .cookie-buttons .btn {
  min-width: 120px;
}

.cookie-banner .cookie-buttons .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cookie-banner .cookie-buttons .btn-outline:hover {
  background-color: #fff;
  color: #1c2641;
}

.header {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 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;
}

.header .header-content .logo {
  display: block;
}

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

.header .header-content .main-nav {
  display: none;
}

@media (min-width: 992px) {
  .header .header-content .main-nav {
    display: block;
  }
}

.header .header-content .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.header .header-content .main-nav ul li a {
  color: #1c2641;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.header .header-content .main-nav ul li a:hover {
  color: #f47f7f;
}

.header .header-content .main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f47f7f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .header-content .main-nav ul li a:hover::after {
  width: 100%;
}

.header .header-content .mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 101;
}

@media (min-width: 992px) {
  .header .header-content .mobile-menu-toggle {
    display: none;
  }
}

.header .header-content .mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #1c2641;
  margin: 6px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header .header-content .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}

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

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

.header.mobile-menu-open .main-nav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #fff;
  -webkit-box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  padding: 5rem 1.5rem 2rem;
  z-index: 100;
  -webkit-animation: slideIn 0.3s ease forwards;
          animation: slideIn 0.3s ease forwards;
}

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header.mobile-menu-open .main-nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.header.mobile-menu-open .main-nav ul li {
  border-bottom: 1px solid rgba(28, 38, 65, 0.1);
}

.header.mobile-menu-open .main-nav ul li:last-child {
  border-bottom: none;
}

.header.mobile-menu-open .main-nav ul li a {
  display: block;
  padding: 1rem 0;
}

.header.mobile-menu-open .main-nav ul li a:hover {
  background-color: rgba(244, 127, 127, 0.05);
}

.header.mobile-menu-open .main-nav ul li a::after {
  display: none;
}

.header.mobile-menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.hero {
  background-color: #1c2641;
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(28, 38, 65, 0.9), rgba(28, 38, 65, 0.7));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .hero-content {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .hero .hero-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero .hero-content .hero-text h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

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

.hero .hero-content .hero-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .hero-content .hero-form form .btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.875rem;
  font-size: 1.1rem;
}

.modules {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

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

.modules .modules-grid .module-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modules .modules-grid .module-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modules .modules-grid .module-card .module-image {
  height: 200px;
  overflow: hidden;
}

.modules .modules-grid .module-card .module-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.modules .modules-grid .module-card .module-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.modules .modules-grid .module-card h3 {
  padding: 1.5rem 1.5rem 0.75rem;
  font-size: 1.35rem;
  color: #1c2641;
}

.modules .modules-grid .module-card p {
  padding: 0 1.5rem 1.5rem;
  color: #555;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.stats {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(244, 127, 127, 0.05) 0%, rgba(244, 127, 127, 0) 70%);
  z-index: 0;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats .stats-grid {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .stats .stats-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.stats .stats-grid .stat-item {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.stats .stats-grid .stat-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats .stats-grid .stat-item h3 {
  font-size: 2.5rem;
  color: #f47f7f;
  margin-bottom: 1rem;
}

.stats .stats-grid .stat-item p {
  color: #555;
  font-size: 1.1rem;
}

.stats .cta-container {
  margin-top: 4rem;
  text-align: center;
}

.stats .cta-container .btn {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  -webkit-box-shadow: 0 10px 20px rgba(244, 127, 127, 0.2);
          box-shadow: 0 10px 20px rgba(244, 127, 127, 0.2);
}

.stats .cta-container .btn:hover {
  -webkit-box-shadow: 0 15px 30px rgba(244, 127, 127, 0.3);
          box-shadow: 0 15px 30px rgba(244, 127, 127, 0.3);
}

.ai-benefits {
  padding: 5rem 0;
  background-color: #f5f5f5;
  position: relative;
}

.ai-benefits .benefits-grid {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .ai-benefits .benefits-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.ai-benefits .benefits-grid .benefit-item h3 {
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.ai-benefits .benefits-grid .benefit-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f47f7f;
  -webkit-box-shadow: 0 0 0 4px rgba(244, 127, 127, 0.2);
          box-shadow: 0 0 0 4px rgba(244, 127, 127, 0.2);
}

.ai-benefits .benefits-grid .benefit-item p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ai-benefits .benefits-grid .benefit-item .benefit-image {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ai-benefits .benefits-grid .benefit-item .benefit-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.ai-benefits .benefits-grid .benefit-item .benefit-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.testimonials {
  padding: 5rem 0;
  background-color: #fff;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, rgba(28, 38, 65, 0.03) 0%, rgba(28, 38, 65, 0) 70%);
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .section-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials .testimonials-grid {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials .testimonials-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.testimonials .testimonials-grid .testimonial-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonials .testimonials-grid .testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonials-grid .testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(244, 127, 127, 0.2);
  z-index: 0;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-author {
  font-weight: 600;
  color: #1c2641;
  position: relative;
  z-index: 1;
}

.blog {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

.blog .blog-grid {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

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

@media (min-width: 992px) {
  .blog .blog-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.blog .blog-grid .blog-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog .blog-grid .blog-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

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

.blog .blog-grid .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.blog .blog-grid .blog-card .blog-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog .blog-grid .blog-card h3 {
  padding: 1.5rem 1.5rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1.4;
}

.blog .blog-grid .blog-card p {
  padding: 0 1.5rem;
  color: #555;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.blog .blog-grid .blog-card .read-more {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  font-weight: 600;
  position: relative;
}

.blog .blog-grid .blog-card .read-more::after {
  content: '→';
  margin-left: 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog .blog-grid .blog-card .read-more:hover::after {
  margin-left: 0.75rem;
}

.blog .blog-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.contact {
  padding: 5rem 0;
  background-color: #1c2641;
  color: #fff;
}

.contact h2 {
  color: #fff;
}

.contact .contact-grid {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact .contact-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.contact .contact-grid .contact-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact .contact-grid .contact-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.contact .contact-grid .contact-item h3 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact .contact-grid .contact-item h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #f47f7f;
}

.contact .contact-grid .contact-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.success-message {
  padding: 6rem 0;
  text-align: center;
  background-color: #1c2641;
  color: #fff;
  position: relative;
}

.success-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(28, 38, 65, 0.9), rgba(28, 38, 65, 0.7));
  z-index: 0;
}

.success-message .container {
  position: relative;
  z-index: 1;
}

.success-message h1 {
  color: #fff;
  margin-bottom: 2rem;
}

.success-message p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.success-message .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 4rem 0 2rem;
  background-color: #fff;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.footer .footer-top {
  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: 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .footer-top .logo img {
  height: 40px;
}

.footer .footer-top .copyright {
  color: #555;
  margin-bottom: 0;
}

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

.footer .footer-links a {
  color: #555;
  position: relative;
  padding: 0.25rem 0;
}

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

.footer .footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #f47f7f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .footer-links a:hover::after {
  width: 100%;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 38, 65, 0.8);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fade-in {
  -webkit-animation: fadeIn 0.5s ease forwards;
          animation: fadeIn 0.5s ease forwards;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .header.mobile-menu-open .main-nav {
    display: block;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  .hero {
    padding: 3rem 0;
  }
  .btn {
    padding: 0.75rem 1.25rem;
  }
}

.privacy {
  margin-top: 100px;
  margin-bottom: 100px;
}
/*# sourceMappingURL=style.css.map */