body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1a1430;
  position: relative;
  font-size: 1rem;
}

.shape_wrapper {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Abstract background shapes */
.shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.3;
}

.shape-pink {
  width: 200px;
  height: 200px;
  background-color: #ff4081;
  top: -60px;
  right: -60px;
}

.shape-cyan {
  width: 250px;
  height: 250px;
  background-color: #00e5ff;
  bottom: -50px;
  left: -100px;
}

.shape-purple {
  width: 140px;
  height: 400px;
  background-color: #7e57c2;
  top: 30%;
  right: -70px;
  border-radius: 0 100% 100% 0;
  transform: rotate(-15deg);
}

.contact-section {
  position: absolute;
  display: flex;
  min-height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1;
  top: 0;
  left: 0;
}

.left-content {
  color: white;
  padding: 2rem;
}

.left-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.left-content p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #cfcfcf;
}

.form-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.btn-custom {
  background-color: #e91e63;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #d81b60;
}

.form-check-label {
  font-size: 0.9rem;
}

.form-check input {
  margin-top: 0.2rem;
}

/* Website cookie css */
#cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #333333;
  color: #ffffff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  font-size: 14px;
}

#cookie-popup span {
  display: inline-block;
  max-width: calc(100% - 300px);
}

#cookie-popup span p {
  margin-bottom: 0;
}

#accept-cookies {
  margin-left: 10px;
}

#reject-cookies {
  margin-left: 5px;
}

#cookie-settings-btn {
  margin-left: 5px;
}

#cookie-settings-wrapper {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  left: 0;
  top: 0;
}

#cookie-settings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px 15px;
  max-width: 600px;
  font-size: 14px;
  width: 100%;
}

#save-settings {
  margin-top: 10px;
}

#close-settings {
  margin-top: 10px;
}

.custom-quote {
  background: rgba(255, 255, 255, 1);
  border-left: 6px solid #a259e6;
  border-radius: 8px;
  padding: 1.5rem;
  font-style: italic;
  color: var(--bs-body-color);
  box-shadow: 0 2px 12px rgba(162, 89, 230, 0.08);
  position: relative;
}

.custom-quote p {
  color: var(--bs-body-color);
  margin-bottom: 0.75rem;
}

.custom-quote .quote-author {
  font-weight: bold;
  font-size: 1.2em;
  color: #a259e6;
}

.custom-quote .quote-title {
  color: #000;
  margin-left: 0.5em;
  font-size: 1.2em;
  text-align: left;
}

@media (max-width: 768px) {
  .left-content h1{
    font-size: 2rem;
  }
  .contact-section {
    flex-direction: column;
  }

  .left-content {
    text-align: center;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
  .custom-quote p, blockquote footer {
    text-align: left;
  }

  #cookie-settings {
    width: calc(100% - 30px);
  }

  #cookie-popup span {
    display: block;
    max-width: 100%;
    margin-bottom: 10px;
  }
}