*,
*::before,
*::after {
  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;
}

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

ul {
  list-style: none;
}

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

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

section {
  padding: 60px 0;
}

h1,
h2,
h3 {
  margin-bottom: 20px;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #E91E63;
  margin-top: 10px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background-color: #FFC107;
  color: #333;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #d39e00;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

header {
  background-color: #E91E63;
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.desktop-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.desktop-menu a {
  color: white;
}

.desktop-menu a:hover {
  text-decoration: underline;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 11px;
}

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

.mobile-menu-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 11px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #E91E63;
  padding: 20px;
}

.mobile-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.mobile-menu ul a {
  color: white;
  display: block;
  padding: 5px 0;
}

.mobile-menu ul a:hover {
  text-decoration: underline;
}

.hero {
  background-color: #E91E63;
  color: white;
}

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

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

.hero .hero-image {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

.clarity {
  background-color: #FFF;
}

.clarity .clarity-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  gap: 40px;
}

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

.clarity .clarity-text p {
  margin-bottom: 20px;
}

.clarity .clarity-text .btn {
  margin-top: 10px;
}

.clarity .philosophy-content {
  background-color: #E91E63;
  color: white;
  padding: 30px;
  border-radius: 4px;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

.clarity .philosophy-content h3 {
  margin-bottom: 20px;
}

.services {
  background-color: #F8F8F8;
}

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

.services h2::after {
  margin: 10px auto 0;
}

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

@media (max-width: 992px) {
  .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: #FFF;
  border-radius: 4px;
  overflow: hidden;
  -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 .service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.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;
}

.services .service-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.services .service-card p {
  padding: 0 20px 20px;
}

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

.faq {
  background-color: #FFF;
}

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

.faq h2::after {
  margin: 10px auto 0;
}

.faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  background-color: rgba(233, 30, 99, 0.05);
  border-radius: 4px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq .faq-question {
  padding: 20px;
  cursor: pointer;
  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;
}

.faq .faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq .faq-question .faq-toggle {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.faq .faq-answer p {
  padding-bottom: 20px;
}

.faq .faq-item.active .faq-toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq .faq-item.active .faq-answer {
  max-height: 200px;
}

.contact {
  background-color: #F8F8F8;
}

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

.contact h2::after {
  margin: 10px auto 0;
}

.contact .contact-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

@media (max-width: 992px) {
  .contact .contact-content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .contact .contact-content .contact-image {
    grid-column: span 2;
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .contact .contact-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact .contact-content .contact-image {
    grid-column: auto;
  }
}

.contact .contact-info p {
  margin-bottom: 20px;
}

.contact .contact-info .contact-details p {
  margin-bottom: 10px;
}

.contact .contact-info .contact-details a {
  color: #E91E63;
}

.contact .contact-info .contact-details a:hover {
  text-decoration: underline;
}

.contact .contact-form-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

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

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

.contact .contact-form-container .form-group input.error,
.contact .contact-form-container .form-group textarea.error {
  border-color: red;
}

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

.contact .contact-image {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}

.contact .contact-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  background-color: #E91E63;
  color: white;
  padding: 40px 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;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 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: white;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

footer .copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
}

.success-message {
  padding: 80px 0;
}

.success-message .success-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.success-message .success-image {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.success-message .success-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.success-message .success-text h1 {
  color: #E91E63;
  margin-bottom: 25px;
}

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

.cookie-popup {
  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: 20px 0;
  z-index: 1001;
  display: none;
}

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

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

.cookie-popup .cookie-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-popup .cookie-header h3 {
  margin: 0;
  color: #E91E63;
}

.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;
  }
}

.cookie-popup .cookie-btn-primary {
  background-color: #FFC107;
}

.cookie-popup .cookie-btn-secondary {
  background-color: #f1f1f1;
  color: #333;
}

.cookie-popup .cookie-btn-secondary:hover {
  background-color: #d8d8d8;
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .desktop-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-menu.active {
    display: block;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .btn {
    padding: 10px 20px;
  }
}
/*# sourceMappingURL=style.css.map */