body {
    font-family: "Montserrat", sans-serif;
    text-align: center;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat-Bold", sans-serif;
  }
  
  p {
    font-size: 1.6rem;
    color: #040202;
  }
  
  /* Headings */
  .big-heading {
    text-align: center;
    font-family: "Montserrat-Black", sans-serif;
    font-size: 3.5rem;
    line-height: 1.5;
  }
  
  .section-heading {
    font-size: 3rem;
    line-height: 1.5;
  }
  
  /* Containers */
  .container-fluid {
    padding: 7% 15%;
  }
  
  /* Sections */
  .colored-section {
    background-color: #ffffff;
    color: #0c0d0d;
  }
  
  .white-section {
    background-color: #ffffff;
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: #ffffff;
    padding: 0 0 4.5rem;
  }
  
  .navbar-brand {
    color: #ffffff;
    font-size: clamp(1.75rem, 2vw + 1.5rem, 6.25rem);
    font-weight: italic;
  }
  
  .navbar-brand:hover {
    color: #f1e3e3;
  }
  
  .nav-link {
    color: #ffffff;
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.2rem);
  }
  
  .nav-link:hover {
    color: #ffffff;
  }
  
  /* Title Section */
  #title {
    background-color: #ffffff;
    color: #1fd2f6;
    text-align: left;
  }
  
  #title .container-fluid {
    padding: 3% 15% 7%;
  }
  
  /* Title Image */
  .title-image {
    width: 80%;
    transform: rotate(0deg);
    position: absolute;
    right: 10%;
    padding-top: 10%;
  }
  #cta .title-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem; /* Adds space below the image */
    width: 50%; /* Maintain the original size of the image */
  }
  
  
  
  
  /* Features Section */
  #features {
    position: relative;
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
  
  .feature-box {
    padding: 4.5%;
  }
  
  /* Testimonial Section */
  #testimonials {
    background-color: #ffffff;
  }
  
  .testimonial-text {
    font-size: 3rem;
    line-height: 1.5;
  }
  
  .testimonial-image {
    width: 10%;
    border-radius: 100%;
    margin: 20px;
  }
  
  #press {
    background-color: #ffffff;
    padding-bottom: 3%;
  }
  
  .press-logo {
    width: 100%;
    max-width: 300px;
    margin: 20px 0;
  }
  
  /* Pricing Section */
  #pricing {
    padding: 100px;
  }
  
  .price-text {
    font-size: 3rem;
    line-height: 1.5;
  }
  
  .pricing-column {
    padding: 3% 2%;
  }
  
  /* CTA Section */
  #cta {
    text-align: center;
  }
  
  .download-button {
    margin: 5% 3% 5% 0;
  }
  
  /* Footer Section */
  #footer {
    text-align: right;
  }
  
  .social-icon {
    margin: 20px 10px;
  }
  
  /* Media Queries */
  @media (max-width: 1028px) {
    #title {
      text-align: center;
    }
  
    .title-image {
      position: static;
      transform: rotate(0);
    }
  
    .big-heading {
      font-size: 2.5rem;
    }
  
    .section-heading {
      font-size: 2rem;
    }
  
    .testimonial-text {
      font-size: 2rem;
    }
  
    .price-text {
      font-size: 2.5rem;
    }
  }
  