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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #120F24;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

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

p {
  margin-bottom: 1rem;
}

section {
  padding: 4rem 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-primary {
  background-color: #9641E5;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #821edf;
}

.btn-secondary {
  background-color: #666;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: #525252;
}

.btn-dark {
  background-color: #000;
  color: #ffffff;
}
.btn-dark:hover {
  background-color: #262626;
}

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: #ffffff;
  color: #120F24;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}
.cookie-banner.show {
  display: block;
  -webkit-animation: slidein 0.5s forwards;
          animation: slidein 0.5s forwards;
}
.cookie-banner .cookie-content {
  padding: 20px;
  text-align: center;
}
.cookie-banner .cookie-header {
  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;
  margin-bottom: 10px;
}
.cookie-banner .cookie-header .cookie-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}
.cookie-banner .cookie-header h2 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.cookie-banner p {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.cookie-banner .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.cookie-banner .cookie-buttons .btn {
  width: 100%;
}

@-webkit-keyframes slidein {
  from {
    -webkit-transform: translate(-50%, 100px);
            transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes slidein {
  from {
    -webkit-transform: translate(-50%, 100px);
            transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 1;
  }
}
.header {
  padding: 1.5rem 0;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.header .logo {
  color: #9641E5;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.hero {
  background: -webkit-gradient(linear, left top, right top, from(#120F24), to(#1b1631));
  background: linear-gradient(to right, #120F24, #1b1631);
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 80px;
}
.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 800px;
}
.hero h1 {
  margin-bottom: 2rem;
}
.hero h1 .accent {
  color: #9641E5;
}
.hero .hero-description {
  margin-bottom: 2rem;
}
.hero .hero-description p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  max-width: 600px;
}
.hero .hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .hero .hero-benefits {
    grid-template-columns: 1fr;
  }
}
.hero .hero-benefits li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
}
.hero .hero-benefits li .benefit-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}
.hero .cta-button {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.why-coinary {
  background-color: #120F24;
  text-align: center;
}
.why-coinary h2 {
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.why-coinary .section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #9898A6;
}
.why-coinary .features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .why-coinary .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .why-coinary .features {
    grid-template-columns: 1fr;
  }
}
.why-coinary .features .feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  height: 100%;
  border: 1px solid #D875FF;
}
.why-coinary .features .feature-card h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}
.why-coinary .features .feature-card p {
  font-size: 0.9rem;
  color: #9898A6;
  margin-bottom: 0;
}

.testimonials {
  background-color: #120F24;
  text-align: center;
}
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .testimonials .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .testimonials .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials .testimonial-grid .testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  height: 100%;
  border: 1px solid #D875FF;
}
.testimonials .testimonial-grid .testimonial-card .quote {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #9898A6;
}
.testimonials .testimonial-grid .testimonial-card .author {
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.faq {
  background-color: #120F24;
  text-align: center;
}
.faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq .faq-list .faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  margin-bottom: 20px;
  border: 1px solid #D875FF;
}
.faq .faq-list .faq-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.faq .faq-list .faq-item p {
  font-size: 0.9rem;
  color: #9898A6;
  margin-bottom: 0;
}

.contact {
  background-color: #9641E5;
}
.contact .contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact .contact-content h2 {
  margin-bottom: 1rem;
}
.contact .contact-content p {
  margin-bottom: 2rem;
}
.contact .contact-content .contact-info {
  margin-bottom: 2rem;
}
.contact .contact-content .contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.contact .contact-content form .form-group {
  margin-bottom: 15px;
}
.contact .contact-content form .form-group input,
.contact .contact-content form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #120F24;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.contact .contact-content form .form-group input::-webkit-input-placeholder, .contact .contact-content form .form-group textarea::-webkit-input-placeholder {
  color: #434358;
}
.contact .contact-content form .form-group input::-moz-placeholder, .contact .contact-content form .form-group textarea::-moz-placeholder {
  color: #434358;
}
.contact .contact-content form .form-group input:-ms-input-placeholder, .contact .contact-content form .form-group textarea:-ms-input-placeholder {
  color: #434358;
}
.contact .contact-content form .form-group input::-ms-input-placeholder, .contact .contact-content form .form-group textarea::-ms-input-placeholder {
  color: #434358;
}
.contact .contact-content form .form-group input::placeholder,
.contact .contact-content form .form-group textarea::placeholder {
  color: #434358;
}
.contact .contact-content form .form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.contact .contact-content form button {
  width: 100%;
  padding: 12px;
}

footer {
  background-color: #120F24;
  padding: 2rem 0;
}
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: 1.5rem;
}
@media (max-width: 768px) {
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
footer .footer-content .footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #9641E5;
}
footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
}
footer .footer-content .footer-links a {
  color: #9898A6;
}
footer .footer-content .footer-links a:hover {
  color: #ffffff;
}
footer .footer-content .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
footer .footer-content .footer-social .social-icon {
  width: 30px;
  height: 30px;
  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;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
footer .footer-content .footer-social .social-icon:hover {
  background-color: #9641E5;
}
footer .copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #9898A6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  section {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .cookie-banner {
    width: 95%;
  }
  .hero {
    text-align: center;
  }
  .hero .hero-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .hero .hero-benefits {
    width: 100%;
  }
}
.text-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 60px 0;
  padding-top: 100px;
}
.text-section h2 {
  font-family: Plus Jakarta Sans;
  font-weight: 800;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.text-section p {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

.f1 {
  position: fixed;
  top: 30%;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  max-height: 400px;
}

.f2 {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  max-height: 400px;
}

main {
  position: relative;
}