/* Set the body and html to use full height */
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

h1 {
  color: #4b0082;
  /* Dark purple color for h1 (same as press page) */
  text-align: center;
  margin-top: 20px;
  font-size: 2.5em;
  font-weight: 700;
}

/* Ensure the main content grows to fill the available space */
.container {
  flex: 1;
  /* This will make the main content area expand to take up available space */
}

/* For all individual pages*/
.bg-individual {
  background-color: #ead9ff;
  padding-top: 4rem;
}

/* Styling for the footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #4b0082;
  /* Dark purple background */
  color: #fff;
  width: 100%;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  margin-top: auto;
  /* Ensure it sticks to the bottom */
}

/* Press Page */

/* General Background */
body {
  font-family: "Inter", sans-serif;
  background-color: #f2f2f2;
  /* Light gray background */
  margin: 0;
  padding: 0;
}

/* Heading styling */
header h1 {
  color: #4b0082;
  /* Dark purple heading */
  text-align: center;
  margin: 0;
  padding: 1.5em 0 0.5em 0;
  /* Remove the extra white space */
}

/* Main section styling */
main {
  padding: 2em 0;
  text-align: center;
}

/* Press item styling */
.press-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center items */
  margin: 1.5em auto;
  background-color: #fff;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  /* Make it less wide */
  text-align: left;
  /* Image left, text right */
}

.press-item img {
  width: 150px;
  height: auto;
  margin-right: 1.5em;
  border-radius: 8px;
  object-fit: cover;
}

.press-item h3 {
  margin: 0;
  font-size: 1.4em;
  /* Larger text for the links */
}

.press-item a {
  text-decoration: none;
  color: #800080;
  /* Purple link color */
}

.press-item a:hover {
  text-decoration: underline;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 2em 0;
  background-color: #333;
  color: #fff;
}

/* Responsive design */
@media (max-width: 768px) {
  .press-item {
    flex-direction: column;
    text-align: center;
  }

  .press-item img {
    margin: 0 0 1em 0;
    width: 100%;
    max-width: 300px;
  }

  .press-item h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .press-item h3 {
    font-size: 1em;
  }
}

.bg-custom {
  background: #ead9ff;
}

.bg-privacy {
  background: #710dfd;
}

.faq-item h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #ffffff;
  margin-bottom: 2rem;
}

.bg-about h1 {
  color: #ffd874;
}

.bg-contact {
  background: #8d8bf6;
  padding: 3rem;
  border-radius: 2rem;
}

.bg-custom h1 {
  color: #ffd874;
}

.content-area {
  margin: 2rem;
}

/* Press Page - Client Profiles */

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.client-profile {
  margin-top: 6rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 8rem;
  margin-right: 4rem;
  margin-left: 4rem;
}

@media (max-width: 1200px) {
  .client-profile {
    padding: 2rem;
    flex-direction: column;
  }
}

.profile-image img {
  width: 300px;
  height: auto;
  border-radius: 10px;
}

.profile-content h1 {
  font-size: 32px;
  font-weight: 500;
  color: #5f009a;
  margin-bottom: 20px;
  font-family: "Clash Display", sans-serif;
}

/* Align the description to the left */
.profile-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  text-align: left;
  /* Left-aligns the description */
}

/* Clients Page */

/* Grid layout for client items */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,
      minmax(200px, 1fr));
  /* Responsive grid */
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Client item styling */
.client-item {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.client-item:hover {
  transform: translateY(-5px);
  /* Add hover effect */
}

/* Client image styling */
.client-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  /* Rounded edges */
  margin-bottom: 10px;
}

/* Client name styling */
.client-item p {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin: 10px 0 0;
  text-decoration: none;
}

.client-item a {
  text-decoration: none;
  color: #4b0082;
  /* Link color */
}

.client-item a:hover {
  text-decoration: underline;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit,
        minmax(150px, 1fr));
    /* Adjust the grid for smaller screens */
  }

  .client-item img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    /* Keep the same rounded edges */
  }
}

/* Contact Form Section */
.container-contact {
  max-width: 700px;
  /* Increase max-width to make form wider */
  width: 100%;
  /* Ensure it takes up full width if possible */
  margin: 40px auto;
  /* Center the form and add top margin */
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.contact-form-section h1 {
  text-align: center;
  color: #fff0d9;
  /* Dark purple */
  margin-bottom: 20px;
  font-size: 32px;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Spacing between elements */
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #fff0d9;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background-color: #f9f9f9;
}

.form-group textarea {
  resize: vertical;
}

/* Button styling */
.btn-submit {
  background-color: #4b0082;
  /* Dark purple button */
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.btn-submit:hover {
  background-color: #663399;
  /* Lighter purple */
}

/* Responsive design */
@media (max-width: 768px) {
  .container-contact {
    padding: 20px;
    max-width: 90%;
    /* Make it more responsive */
  }
}

/* Privacy Page Styles */
.container-privacy {
  max-width: 900px;
  margin: 40px auto;
  margin-top: 8rem;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.privacy-content li {
  color: #fff0d9;
}

.privacy-content h1 {
  color: #ffd874;
  /* Dark purple heading */
  text-align: left;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.privacy-content h2 {
  font-size: 1.8em;
  color: #ffd874;
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy-content p {
  font-size: 1.2em;
  color: #fff0d9;
  text-align: left;
}

.privacy-content li {
  text-align: left;
}

/* About Page style */
.how-different {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem;
  align-items: flex-start;
}

.difference-row {
  flex: 1;
  padding-right: 2rem;
}

.how-different img {
  max-width: 100%;
  /* Ensures image scales responsively */
  height: auto;
  /* Keeps aspect ratio */
  width: 400px;
  /* Limits the image size to fit like the second div */
  object-fit: contain;
  /* Ensures image is fully visible within the set width */
}

@media (max-width: 768px) {
  .how-different {
    flex-direction: column;
    align-items: center;
  }

  .difference-row {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .how-different img {
    width: 100%;
    /* Makes the image fill the width on smaller screens */
  }
}

.different-item {
  padding: 1rem;
}

.why-choose {
  display: flex;
  gap: 4rem;
  padding: 4rem;
}

@media (max-width: 768px) {
  .why-choose {
    flex-direction: column;
  }
}

.about_icon {
  justify-content: center;
  display: flex;
  margin-bottom: 2rem;
}

.about_icon img {
  max-width: 50px;
}

@media (min-width: 768px) {
  .about_icon img {
    max-width: initial;
  }
}

.container-about {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.difference-item {
  color: #ffd874;
  margin-bottom: 1rem;
}

.difference-item p {
  margin-top: 0.5rem;
  color: #fff0d9;
}

.container-about {
  max-width: auto;
  margin: 40px auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.hero-button-container {
  text-align: center;
  margin-top: 20px;
}

.hero-video-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #4b0082;
  /* Dark purple */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: none;
}

.hero-video-button:hover {
  background-color: #663399;
  transform: translateY(-3px);
}

.bg-about-container {
  background-color: #ead9ff;
  /* Pink background color */
  padding: 4rem 0;
  /* Space around the white content box */
}

.content-box {
  background-color: #ffffff;
  /* White background for content */
  padding: 4rem;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1400px;
  margin: 0 auto;
  /* Centers the content box */
}

/* Agencies Section Styling */
.agency-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.agency-section h3 {
  color: #4b0082;
  margin-bottom: 1rem;
}

.agency-section p {
  color: #000;
  text-align: left;
  line-height: 1.6;
}

/* Styling for Lists */
.agency-section ul {
  color: #000;
  padding-left: 1.5rem;
  line-height: 1.6;
  list-style-type: decimal;
}

.agency-section ul li {
  color: #000;
  /* Ensure black text */
  margin-bottom: 0.75rem;
}

/* Styling for Ordered List */
.agency-section ol {
  list-style-position: inside;
  /* Keeps numbers aligned with text */
  margin: 0;
  padding-left: 1.5rem;
  /* Adds slight padding for left alignment */
  text-align: left;
  /* Ensures the whole list is left-aligned */
  color: #000;
  /* Text color */
}

.agency-section ol li {
  margin-bottom: 0.5rem;
  /* Adds spacing between items */
  line-height: 1.6;
  /* Improves readability */
}

/* CTA Section Styling */
.cta-section {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #caddff;
  color: #4b0082;
  border-radius: 8px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.cta-section p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section .btn-cta {
  background-color: #2d2b92;
  color: #ffd874;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-section .btn-cta:hover {
  background-color: #ffd874;
}

/* General Layout */
.content-box {
  max-width: 1200px;
  /* Increased width for more space */
  margin: 0 auto;
  /* Center the content */
  padding: 20px;
  /* Consistent padding around content */
  background-color: #ffffff;
  /* Ensure white background */
  border-radius: 10px;
  /* Smooth corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

/* List Styling */
.list-style-check {
  list-style: none;
  padding-left: 0;
  /* Remove default list padding */
  margin: 0;
  /* Remove extra margins */
}

.list-style-check li {
  display: flex;
  align-items: flex-start;
  /* Align items properly */
  margin-bottom: 15px;
  /* Add spacing between items */
}

.list-style-check li::before {
  content: "•";
  /* Custom bullet */
  font-weight: bold;
  color: #6C63FF;
  /* Custom bullet color */
  margin-right: 10px;
  /* Space between bullet and text */
}

.list-style-check li strong {
  margin-right: 5px;
  /* Add space after bold text */
}

/* General Layout for Agency Page */
.agency-row {
  display: flex;
  /* Enable flexbox for side-by-side alignment */
  flex-wrap: wrap;
  /* Allow wrapping for responsiveness */
  gap: 20px;
  /* Add space between columns */
  justify-content: space-between;
  /* Distribute space evenly */
}

/* Two Columns for Make Money Section */
.agency-col-6 {
  flex: 0 0 calc(50% - 20px);
  /* Take 50% width minus gap */
  background-color: #ffffff;
  /* White background specific to agency sections */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

/* Three Columns for Ways to Earn Section */
.agency-col-4 {
  flex: 0 0 calc(33.33% - 20px);
  /* Take 33.33% width minus gap */
  background-color: #ffffff;
  /* White background specific to agency sections */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

/* Specific to Agency Page Headings */
.agency-row h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

/* Specific to Agency Page Paragraphs */
.agency-row p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .agency-col-6,
  .agency-col-4 {
    flex: 0 0 100%;
    /* Stack columns vertically on small screens */
    margin-bottom: 20px;
    /* Add space between stacked columns */
  }
}

/* Intro Section Styling */
.agency-intro {
  padding: 4rem 2rem;
  /* Add spacing around the section */
  background-color: #f9f9f9;
  /* Light background color for contrast */
}

.agency-intro h1 {
  text-align: center;
  /* Center-align the title */
  font-size: 2.5rem;
  /* Large heading */
  color: #4b0082;
  /* Purple color for branding */
  margin-bottom: 2rem;
  /* Space between the title and the content */
}

.intro-container {
  display: flex;
  /* Use flexbox for side-by-side layout */
  align-items: flex-start;
  /* Align items at the top */
  gap: 2rem;
  /* Add space between image and text */
}

.intro-image img {
  max-width: 100%;
  /* Make the image responsive */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 10px;
  /* Add rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
  width: 200px;
  /* Limit image width for a balanced layout */
}

.intro-text {
  flex: 1;
  /* Allow the text to fill remaining space */
  text-align: left;
  /* Left-align the paragraph */
}

.intro-text p {
  font-size: 1.2rem;
  /* Larger font size for readability */
  line-height: 1.6;
  /* Improve spacing between lines */
  color: #333;
  /* Neutral text color */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    /* Stack image and text vertically */
    text-align: center;
    /* Center-align text for smaller screens */
  }

  .intro-text {
    text-align: center;
    /* Center-align text */
  }

  .intro-text p {
    font-size: 1rem;
    /* Adjust paragraph size for smaller screens */
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    /* Stack image and text vertically */
    text-align: center;
    /* Center-align text */
  }

  .intro-text {
    max-width: 100%;
    /* Remove width restriction for small screens */
  }

  .intro-text h1 {
    font-size: 2rem;
    /* Adjust heading size for smaller screens */
  }

  .intro-text p {
    font-size: 1rem;
    /* Adjust paragraph size */
  }
}


/* CTA Section */
.cta-section {
  margin-top: 2rem;
  /* Space above section */
  padding: 2rem;
  /* Padding inside the section */
  background-color: #caddff;
  /* Light background color */
  color: #4b0082;
  /* Text color for contrast */
  border-radius: 8px;
  /* Rounded corners */
  text-align: center;
  /* Center-align text */
}

.cta-section .btn-cta {
  background-color: #2d2b92;
  /* Button color */
  color: #ffd874;
  /* Button text color */
  padding: 0.75rem 1.5rem;
  /* Add padding to button */
  border-radius: 50px;
  /* Round button */
  text-transform: uppercase;
  /* Capitalized text */
  font-weight: bold;
  /* Bold text */
  text-decoration: none;
  /* Remove underline */
  transition: background-color 0.3s ease;
  /* Smooth hover effect */
}

.cta-section .btn-cta:hover {
  background-color: #ffd874;
  /* Change background on hover */
  color: #2d2b92;
  /* Change text color on hover */
}


/* Home Page Video */

.demo-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.demo-video-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Referral Page */

.referral-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.referral-intro {
  text-align: left;
  margin-bottom: 20px;
}

.referral-intro h1 {
  font-size: 28px;
  color: #333;
}

.referral-intro p {
  font-size: 18px;
  color: #555;
}

.referral-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.referral-step {
  display: flex;
  align-items: center;
  /* Align items in a row */
  gap: 15px;
  /* Spacing between icon and text */
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  transition: 0.3s;
  text-align: left;
  /* Ensure text inside is left-aligned */
}

.referral-step:hover {
  background: #eee;
}

.referral-step i {
  font-size: 24px;
  color: #673ab7;
  min-width: 30px;
  /* Ensure icons are aligned */
  text-align: left;
  /* Align icon left */
}

.referral-step div {
  flex: 1;
  /* Allows text to take the remaining space */
  text-align: left;
  /* Ensures text inside is left-aligned */
}

.referral-step h3 {
  margin: 0;
  font-size: 20px;
  color: #222;
}

.referral-step p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #666;
}


.cta-section {
  margin-top: 40px;
  text-align: center;
}

.cta-box {
  background: #e3e3ff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.cta-box h3 {
  font-size: 24px;
  color: #333;
}

.cta-box p {
  font-size: 18px;
  color: #555;
}

.btn-cta {
  display: inline-block;
  background: #673ab7;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 10px;
  text-decoration: none;
}

.btn-cta:hover {
  background: #5a2ca0;
}

.referral-video-block {
  display: flex;
  flex-direction: column;
  /* Stack video and button */
  align-items: center;
  /* Center everything */
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 20px auto;
  /* Adds spacing */
}

.referral-video {
  display: flex;
  flex-direction: column;
  /* Stack video and button inside */
  align-items: center;
  /* Ensure button and video stay centered */
  width: 100%;
  max-width: 300px;
  /* Adjust video size */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.hero-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  /* Center the button */
  margin-top: 10px;
  /* Space between video and button */
}

.hero-video-button {
  background: #673ab7;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-video-button:hover {
  background: #5a2ca0;
}

/* Remove all pricing-section and pricing-card related styles from this file. */