/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing:border-box;
}

html, body {
    background-color: #1f1d1a;
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair-Display', sans-serif;
    color: #f4f4f1;
    line-height: 1.6;
}

/*This is the top bar*/
.announcement {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    width: 100%;
    background-color: #f4f4f1;
    color: #1a1a1a;
    text-align: center;
    padding: 1em 2em;
    z-index: 1000;
    font-size: 0.75em;
}

.announcement-text {
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    margin: 0 2em;
    color: #1a1a1a;
}

.announcement-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #fff;
    font-size: 1.2em;
}

/*Header Area*/
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    vertical-align: middle;
    width: 100%;
    height: auto;
    padding: 2em;

}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
  width: 9.375rem; /* 150px / 16 = 9.375rem */
  height: auto;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

nav ul li {
    display: inline-block;
    list-style: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
}

a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 500;
}

.desktop-nav {
    display: none;
}

.bookandbars {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    padding: 0.5em;
    gap: 0.75em;
    text-align: center;
}

/*Get Started Nav Button*/
.button2 {
  position: relative;
  display: inline-block;
  padding: 0.5em;
  color: #f4f4f1;
  background: transparent;
  border: 1px solid #f4f4f1;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  cursor: pointer;
}

.button2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #f4f4f1; /* Change to your desired fill color */
  z-index: -1;
  transition: width 0.4s ease;
}

.button2:hover::before {
  width: 100%;
}

.button2:hover {
  color: #000; /* Text color on hover */
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Start off-screen to the right */
  width: 100%;
  height: 100vh;
  color: #fff;
  background-color: #1f1d1a;
  transition: right 0.7s ease;
  z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-top: 3em;
    margin: 0;
}

.mobile-menu ul li {
    font-size: 1em;
    margin: 1em 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #f2f2f2;
}

.mobile-menu.active {
    top: 0px;
    right: 0;
    left: 0;
    padding-left: 1.5em;
}

.fa-solid.fa-xmark {
    font-size: 1em;
    color: #fff;
}

.fa-solid {
    font-size: 1.55em;
}

#menu-icon {
  transition: transform 0.3s ease;
}

/* When toggled (add a class like 'rotated') */
#menu-icon.rotated {
  transform: rotate(180deg);
}

.close-menu {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #f4f4f1;
  cursor: pointer;
  z-index: 1100;
}

.close-menu:hover {
  color: #ccc;
}
/*End of Header Area*/

/*Home-About Hero Section*/
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1rem 1rem 2rem 1rem;
    padding: 3rem 1rem 3rem 1rem;
    color: #F5F5F5;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.hero-subtext {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* This is the link on the next steps page */
.hero-link {
  text-decoration: underline;
}

.button {
  position: relative;
  display: inline-block;
  padding: 0.5em;
  color: #f4f4f1;
  background: transparent;
  border: 1px solid #f4f4f1;
  overflow: hidden;
  z-index: 1;
  transition: color 0.6s ease;
  cursor: pointer;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #f4f4f1; /* Change to your desired fill color */
  z-index: -1;
  transition: width 0.6s ease;
}

.button:hover::before {
  width: 100%;
}

.button:hover {
  color: #000; /* Text color on hover */
}
/* End of Home-About Hero Section */



/*======================= This is for the Shop Page ===============================*/

    .filter-section{
      display: flex;
      width: 100%;
      padding: 2rem;
    }

    .filter-group{
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .shop-container{
      width: 100%;
      margin: 0 auto;
      background-color: #f4f4f1;
      padding: 1rem;
    }
    .search-bar-container{
      display: flex;
      flex-direction: row;
      width: 100%;
    }
    .search-bar{
      display: flex;
      flex-direction: row;
      flex-grow: 1;
      flex-shrink: 0;
      flex-basis: 100%;
      border: 1px solid #1f1d1a;
      font-family: 'playfair-display', sans-serif;
      padding: 0.75rem;
      border-radius: 0.25rem;
      font-weight: 200;
      width: 100%;
      color: #1f1d1a;
      outline:#1f1d1a;
    }
    .search-bar::placeholder {
      color: #1f1d1a;
      font-size: 1rem;
    }

     .filter-group select, .filter-group button {
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 0.9rem;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
      gap: 4rem;
      padding: 2rem;
    }
    .card {
      background:#1f1d1a;
      color: #f4f4f1;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    
    .card-content {
      padding: 1rem;
      flex-grow: 1;
    }
    .card h3 {
      font-family: 'Playfair Display', serif;
      margin: 0 0 0.5rem;
      font-size: 1.2rem;
    }
    .badge {
      display: inline-block;
      padding: 0.25rem 0.5rem;
      border-radius: 12px;
      font-size: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .subscription { 
      color: #f4f4f1; 
    }

    .subscription2 { 
      border: 1px solid #f4f4f1;
      color: #f4f4f1; 
      background-color: #1f1d1a;
    }

    .card-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      border-top: 1px solid #f4f4f1;
    }
    .card-actions button {
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.9rem;
    }
    .view-btn { background: #f4f4f1; }

    .buy-btn { 
      border: 1px solid #f4f4f1; 
      color: #f4f4f1; 
      padding: 0.5rem 1rem;
      font-size: 1rem;
      white-space: nowrap;
    }

    .price-column {
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: center;
      color: #f4f4f1;
      padding: 1rem;
    }

    .price-column p:nth-child(1) {
      font-size: 1.5rem;
    }

    .price-column p:nth-child(2) {
      font-size: 0.75rem;
      color: grey;
    }

    .toggle-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    }
    .toggle-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid #f4f4f1;
    background-color: #1f1d1a;
    color: #f4f4f1;
    cursor: pointer;
    font-size: 0.8rem;
    }
    .toggle-btn.active {
    background: #f4f4f1;
    color: #1f1d1a;
    }
    .hidden { display: none; }

/*======================= This is for the Contact Page===============================*/

.contact-container{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f4f4f1;
  font-family: 'playfair-display', sans-serif;
  padding: 2rem;
}

.contact-info{
  color: #1f1d1a;
  font-family: 'playfair-display', sans-serif;
  font-weight: 100;
  padding: 1rem 1rem 0;
  flex-grow: 1;
  width: auto;
}

.contact-info h2{
  font-size: 2rem;
  font-weight: 100;
}

.contact-info a{
  color: grey;
  cursor: pointer;
  text-decoration: underline;
}

.form-container{
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 3rem;
  gap: 2rem;
  background-color: transparent;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input {
  padding: 0.5rem;
  font-family: 'playfair-display', sans-serif;
  font-weight: 200;
  color: #1f1d1a;
}

.dont-show{
  display: none;
}

.success-message {
  color: #1f1d1a;
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.contact-details{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.contact-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

.contact-item i{
  color: #1f1d1a;
  font-size: 1rem;
}

.contact-item a{
  text-decoration: none;
}

.contact-item p{
  color: #1f1d1a;
}

textarea, select, label{
  padding: 0.5rem;
  font-family: 'playfair-display', sans-serif;
  font-weight: 200;
  color: #1f1d1a;
}

.form-button {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 200;
  font-family: 'playfair-display', sans-serif;
  cursor: pointer;
  border: 1px solid #1f1d1a;
  padding: 0.5rem 1rem;
  width: 100px;
  margin: 0 auto;
}


/*======================= This is the end of the Contact Page===============================*/

/* Home-This is the what we do section*/
/* Home-Main container | What we do*/
.services-at-revision {
  display: flex;
  flex-direction: column;
  color: #000;
  padding: 3rem 1.5rem;
  background-color: #f4f4f1;
}

/* This is the container for the what we do content including: the p, the h2, p, and the button*/
.service-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin: 1rem;
  padding: 0.5rem;
  color: #000;
}

/*this is the list of items we do*/
.service-highlight{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
  margin: 1rem;
}

.maintenance-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ccc;
  width: 100%;
  padding: 3rem;
  margin-top: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maintenance-info h2{
  font-size: 1.5rem;
  font-weight: 100;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: center;

}

.feature h4 {
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}

.service-item{
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
  flex: 1 1 0; /* Make all items grow/shrink equally */
}

.service-item p{
  padding: 1rem;
}

.spark{
  width: 10%;
  margin: 0 auto;
}

/* This is the h2 */
.whatweoffer {
    font-weight: 500;
    font-size: 2rem;
}

/* This is the p */
.whatweoffercontent{
    padding-top: 0.5rem;
    height: auto;
}

/* This is the Learn More Button*/
.button3{
    width: 40%;
    height: auto;
    color: #000;
    margin-top: 1rem;
    padding: 0.25em 0.75em;
    border: 1px solid #000;
    font-size: 1em;
}

.button5 {
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  color: #1f1d1a;
  background: transparent;
  border: 1px solid #1f1d1a;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  cursor: pointer;
}

.button5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1f1d1a; /* fill color */
  z-index: -1;
  transition: width 0.4s ease;
}

.button5:hover::before {
  width: 100%;
}

.button5:hover {
  color: #f4f4f1; /* text color on hover */
}

/* This is the hover effect on the what we do boxes*/
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/*fade in effect on welcome to revision*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/*fade in effect on welcome to revision*/
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/*This is the h2 in the what we do item boxes*/
.service-item h2 {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 200;
    color: #000;
    padding: 0.2em;
    white-space: nowrap;
}

/*This is the p in the what we do item boxes*/
.service-item p {
    text-align: center;
    font-size: 1em;
    padding-top: 1rem;
    font-weight: 100;
    color: #000;
}
/*End of Home-what we do section*/

/*=======================About-Page===============================*/

.about-what-were-all-about {
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

.about-whowehelp-container{
  display: flex;
  flex-direction: column;
  background-color: #1f1d1a;
  color: #f4f4f1;
  width: 100%;
  height: auto;
  padding: 3rem 1rem;
}

.provider-quote{
  text-align: center;
  font-weight: 100;
  font-size: 2rem;
}

.section-intro{
  text-align: center;
}

.whowehelp-title-column{
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin: 1rem 0;
}

.providers-container{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 1.5rem;
  align-items: start;
  justify-content: start;
}

.provider-title{
  font-size: 1rem;
}

.provider-box{
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
  padding: 1rem;
  gap: 1rem;
}

.white-title{
  font-weight: 500;
  color: #f4f4f1;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 2rem;
}

.lets-work-together-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: #f4f4f1;
  color: #1f1d1a;
  padding: 2rem;
}

.lets-work-together-title {
  display: flex;
  flex-direction: column;
  color: #1f1d1a
}

.lets-work-together-title h4{
  color: #1f1d1a;
  font-size: 2rem;
  font-family: 'playfair-display', sans-serif;
  text-align: center;
  margin: 0 auto;
}

.lets-work-together-title p {
  color: #1f1d1a;
  font-size: 1rem;
  font-family: 'playfair-display', sans-serif;
  text-align: center;
  margin: 0 auto;
}

.lets-work-together-boxes-container, .lets-work-together-boxes-container2{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  margin: 2rem;
}

.lets-work-together-box{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    text-align: center;
    color: #f4f4f1;
    padding: 1rem;
    flex: 1 1 100%;
    border: 1px solid #1f1d1a;
}

.lets-work-together-box h4{
  color: #1f1d1a;
  font-family: 'playfair-display', sans-serif;
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
  padding-bottom: 1rem;
}

.lets-work-together-box p{
  color: #1f1d1a;
  font-family: 'playfair-display', sans-serif;
  text-align: center;
}

.arrow3-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.arrow3{
  width: 30px;
  height: auto;
  cursor: pointer;
}

.arrow4{
  display: inline-flex;
  justify-self: center;
  width: 20px;
  height: auto;
  cursor: pointer;
  margin: 0 0.5rem;
}

.checkourworkbtn{
  color: #f4f4f1;
  background-color: transparent;
  font-size: 1rem;
  font-family: 'playfair-display', sans-serif;
}

.button-link-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  width: 100%;
  height: auto;
}

.inline-flex{
  display: inline-flex;
}

/*=======================End of About-Page===============================*/

/*Home-This is for the service provider scroll section*/
.scroll-wrapper {
  background-color: #1f1d1a;
  text-align: center;
  padding: 3rem;
  color: #f4f4f1;
}

.scroll-topper {
  color: #f4f4f1;
}

.scroll-title {
  font-weight: 500;
  color: #f4f4f1;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 2rem;
}

.scroll-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 8px 0;
  scrollbar-width: none;
  color: #f4f4f1;
}
.scroll-track::-webkit-scrollbar {
  display: none;
}

.scroll-track span {
  font-size: 1rem;
  color: #f4f4f1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.scroll-track span:hover {
  color: #f4f4f1;
  transform: scale(1.05);
}

.arrow {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #f4f4f1;
  cursor: pointer;
  transition: color 0.2s;
}

/*Home-This is the end of the service provider scroll*/

/* Home-This is the how it works section */
.how-it-works-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background-color: #f4f4f1;
}

/* This is the title for how it works */
.how-it-works-content {
  color: #000;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding-top: 1.5rem;
}

/* This is for the titles on each how to box*/
.how-title {
  color: #000;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 1.35rem;
}

/* This is the h2 for the how it works section */
.howitworks {
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 2rem;
}

/* This is the wrapper for the how it works items */
.how-it-works-highlight {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    align-items: stretch;
    justify-content: center;
    padding: 2.5rem;
    gap: 2rem;
}

/* This is the individual how it works items */
.how-it-works-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 0.75rem;
  color: #000;
  border: 1px solid #000;
  width: 100%;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* This is the hover effect on the what we do boxes*/
.how-it-works-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
/* This is the end for the how it works section*/

/* Home-This is the template page container*/
.template-page-container{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: auto;
  padding: 5rem 2rem;
}

.template-content{
  width: 90%;
  height: auto;
  justify-content: start;
  font-size: 1rem;
  text-align: left;
}

.template-content h2{
  font-size: 2rem;
}

.template-title{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0 1rem;
}

.padding-top{
  padding-top: 1rem;
}

.arrow-container {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  width: 20%;
  height: auto;
}

.slider-container {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
}

.slider-track{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  gap: 1rem;
  margin: 1rem;
}

.slide{
  flex: 0 0 100%; /* 1 slide at a time by default */
  box-sizing: border-box;
}

.template-preview{
 width: 100%;
 height: auto;
}

.template-title-btn{
  background-color: transparent;
  color: #fff;
  width: 100%;
  height: auto;
  margin-top: 1rem;
  font-size: 1rem;
  font-family: 'playfair-display', sans-serif;
}

.dots-container {
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #333; /* match your theme */
}

.shop-button{
  position: relative;
  display: inline-block;
  padding: 0.5em;
  color: #f4f4f1;
  background: transparent;
  border: 1px solid #f4f4f1;
  overflow: hidden;
  z-index: 1;
  transition: color 0.6s ease;
  cursor: pointer;
  margin: 0 auto;
}

.shop-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #f4f4f1; /* Change to your desired fill color */
  z-index: -1;
  transition: width 0.6s ease;
}

.shop-button:hover::before {
  width: 100%;
}

.shop-button:hover {
  color: #000; /* Text color on hover */
}

/* Pricing Section*/
/*This is the pricing main wrapper*/
.pricing-wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  background: #f4f4f1;
  color: #000;
  padding: 2.5rem 1rem 4.5rem;
}

/*This is the pricing section container for the cards*/
.pricing-section{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 1fr;
  gap: 3rem;
  text-align: center;
  justify-content: center;
  align-items: stretch;
}

.price-title {
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}

.pricing-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: auto;
  margin: 0 1rem;
}

/* This is the pricing item card */
/* This is the individual cards */
.pricing-item {
  background: #fff;
  border: 1px solid #ccc;
  padding: 3rem 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/*Home-End of pricing cards*/

/* Home-This is the recommended middle pricing (subscription) item */
.pricing-item-recommended {
  background: #262627;
  color: #fff;
  border: 1px solid #ccc;
  padding: 3rem 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/*End of recommended*/

/* This is the h3 titles for each of the pricing cards*/
.title {
  font-size: 1.5rem;
  font-weight: 300;
}

/* This is the price for each of the pricing options*/
.price {
  font-size: 2rem;
  font-weight: 300;
}

/* This is the ul text for each pricing benefits*/
.list-benefits {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 1.5rem;
}

/* This is the list of benefits for each pricing option*/
.price-benefit {
  list-style-type: none;
  text-align: left;
}

/*Faded p showing the optional add on for hosting, domain, and maintenance.*/
.addtl {
  font-size: 0.9rem;
  color: grey;
}

/* This is the button for each of the pricing options*/
.button4{
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  color: #000;
  width: 80%;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button4:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
/*Home-End of Pricing Section*/

/*Home-The FAQ Section */
.flex-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  color: #1f1d1a;
}

.white-background{
  background-color: #f4f4f1;
}

.process-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.process-img img {
  width: 100%;
  max-width: 500px;
}

.faq-content {
  flex: 1;
  max-width: 1500px;
  color: #1f1d1a;
}

.faq-content h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #1f1d1a;
  margin-bottom: 2rem;
}

/* Home-This is the container for the buttons */
.faq-filters {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
    padding: 1rem 0 1rem 0;
    margin-bottom: 2rem;
    color: #1f1d1a;

}

.filter-btn {
  position: relative;
  border: none;
  background: none;
  color: #1f1d1a;
  font-size: 1em;
  background-color: transparent;
  cursor: pointer;
  padding: 0.5em 1em 0.5em 0.2em;
  font-family: 'playfair-display', sans-serif;
  text-align: left;
  transition: color 0.3s ease;
}

/* The animated underline */
.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 88%;
  background-color: #1f1d1a;
;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Draw the underline on hover */
.filter-btn:hover::after {
  transform: scaleX(1);
}

/* Keep it drawn when active */
.filter-btn.active::after {
  transform: scaleX(1);
}

.accordion-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #1f1d1a;
}

.accordion-item h4{
  font-weight: 500;
}

.accordion-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  cursor: pointer;
  color: #1f1d1a;
  position: relative;
  font-family: playfair-display, sans-serif;
}

.accordion-toggle::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 20%;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.accordion-toggle.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease;
  color: #1f1d1a;
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-content a{
  color: #1f1d1a;
}

.accordion-content.open {
  max-height: 800px; /* Adjust based on content */
  margin-bottom: 1rem;
}

.accordion-group {
  display: none;
}

.accordion-group.active {
  display: block;
}

/*Home-End of FAQ section*/

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 1.75rem 0 0;
}

.max-width {
  max-width: 700px;
}

.center {
  text-align: center;
}

/*Home-About-What its like section*/
.what-its-like-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 3rem;
  gap: 3rem;
  background-color: #f4f4f1;
  color: #000;
}

.what-its-like-content{
  display: flex;
  flex-direction: column;
  text-align: left;
}

.what-its-like-content h5 {
  font-size: 1.75rem;
  font-weight: 100;
  padding: 0.5rem 0 0.75rem;
}

.jasmine-working {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*Home-About-This is for the button container underneath the what its like to work together section.*/
.button-container{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 2rem 0 0;
}

.what-its-like-button{
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  color: #000;
  width: 50%;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.what-its-like-button:hover {
  background: #333;
  color: #fff;
}

/*Home-This is for the social proof section*/

.project-proof {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 3rem;
}

.social-proof-title{
  font-size: 2rem;
  font-weight: 100;
}

.client-logo {
  width: 10rem;
}

/*Home-About-This is for the final call to action section*/
.final-cta{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #f4f4f1;
  color: #000;
  font-size: 2rem;
  padding: 3rem;
}

.final-cta a{
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #000;
  margin-top: 1rem;
}

.final-cta a:hover {
  position: relative;
  display: inline-block;
  padding: 0.5em;
  color: #f4f4f1;
  background: transparent;
  border: 1px solid #f4f4f1;
  overflow: hidden;
  z-index: 1;
  transition: color 0.6s ease;
  cursor: pointer;
}

.final-cta a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1f1d1a; /* Change to your desired fill color */
  z-index: -1;
  transition: width 0.6s ease;
}

.final-cta a:hover::before {
  width: 100%;
}

.final-cta a:hover {
  color: #fff; /* Text color on hover */
}

/* Home-About-This is the container for the footer  */
footer{
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  margin: 1rem;
}

.footer-logo {
  width: 50%;
  height: auto;
}

.footer-title-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
  text-align: left;
  padding: 0.5rem;
}

.title2{
  font-size: 1.5rem;
  font-weight: 300;
  border-bottom: 1px solid #333;
  margin-bottom: 1rem;
}

.footer-link-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
  width: 100%;
}

.footer-col{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  margin: 0.5rem;
  white-space: nowrap;
}

.footer-col ul li{
  list-style: none;
  text-align: left;
}

.template-link{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.template-cta {
  position: relative;
  display: inline-block;
  padding: 0.5em;
  color: #f4f4f1;
  background: transparent;
  border: 1px solid #f4f4f1;
  overflow: hidden;
  z-index: 1;
  transition: color 0.6s ease;
  cursor: pointer;
}

.template-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #f4f4f1; /* Change to your desired fill color */
  z-index: -1;
  transition: width 0.6s ease;
}

.template-cta:hover::before {
  width: 100%;
}

.template-cta:hover {
  color: #1f1d1a; /* Text color on hover */
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
}
.footer-bottom a {
  color: #888;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #bbb;
}

.footer-bottom p{
  padding-top: 1rem;
}

.social-icons {
  display: flex;
  flex-direction: space-between;
  justify-content: space-around;
}

/*=======================Start of Pricing-Page===============================*/
.pricing-tick-arrow{
  width: 15px;
  height: auto;
  margin-right: 0.5rem;
  background-color: transparent;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.pricing-tick-arrow {
  transform: rotate(180deg);
}
/*=======================End of Pricing-Page===============================*/

/*=======================How-It-Works-Page===============================*/

.title-container-hiw2{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1f1d1a;
  padding: 2rem 1rem 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.title-container-hiw2 h2{
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 1.5rem;
  text-align: center;
}

.number {
  color: #1f1d1a;
  font-size: 2rem;
}

.lets-work-together-container2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: #f4f4f1;
  padding: 2rem;
  color: #1f1d1a;
}

.lets-work-together-box2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #1f1d1a;
  width: 100%;
  height: auto;
  white-space: none;
  flex: 1 1 calc(50% - 1.5rem);
  border: 1px solid #1f1d1a;
  padding: 1rem;
  gap: 0.5rem;
 }

  .lets-work-together-box2 h3{
    font-weight: 100;
  }

  .box-cta{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    padding: 0.5rem;
  }

  .box-cta a{
    color: #1f1d1a;
  }

  .hiw-steps-container {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    width: 100%;
    height: auto;
    gap: 1.5rem;
  }

  .hiw-step-by-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid #1f1d1a;
    gap: 2rem;
    padding: 2.5rem;
    margin: 3rem 0;
  }

  .hiw-step-title-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .hiw-step-image-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
  }

  .hiw-step-image-container img{
    width: 100%;
    height: auto;
  }

  .hiw-step-subtitle{
    font-size: 1rem;
    font-weight: 100;
    padding: 1rem 0;
    max-width: 900px;
  }
/*=======================End of How-It-Works-Page===============================*/

/*======================= Next-steps Page===============================*/

.next-steps-container{
  display: flex;
  flex-direction: column;
  background-color: #f4f4f1;
  color: #1f1d1a;
  padding: 3rem;
}

.next-steps-container h2{
  font-weight: 100;
  font-size: 2rem;
}

.next-steps-header{
  display: flex;
  flex-direction: column;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
  gap: 1rem;
}

.step-completed{
  display: flex;
  flex-direction: row;
  background-color: #1f1d1a;
  color: #f4f4f1;
  padding: 2rem;
  gap: 1rem;
  border: 1px solid white;
}

.step-completed2{
  display: flex;
  flex-direction: row;
  color: #f4f4f1;
  background-color: #e4ded2;
  color: #1f1d1a;
  padding: 2rem;
  gap: 1rem;
  border: 1px dashed #1f1d1a;
}

.step-content{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-content p{
  padding-top: 1rem;
}

.step-current{
  display: flex;
  flex-direction: row;
  border: 1px solid #1f1d1a;
  padding: 2rem;
  gap: 2rem;
}

.step-pending{
  display: flex;
  flex-direction: row;
  border: 1px solid #1f1d1a;
  padding: 2rem;
  gap: 2rem;
}

.progress-section{
  margin: 2rem auto;
  width: 100%;
}

/* Progress Bar - Always Horizontal */
.progress-bar-horizontal {
  display: block;
  width: 100%;
  height: 12px;
  background: #f4f4f1;
  border-radius: 8px;
  border: 1px solid #1f1d1a;
  overflow: hidden;
  margin: 1.5rem 0;
  position: relative;
}

.progress-fill-horizontal {
  height: 100%;
  background: #1f1d1a;
  border-radius: 8px;
  width: 0%;
  animation: fillHorizontal 2s ease-out 1s forwards;
  position: relative;
  }

  @keyframes fillHorizontal {
    0% { width: 0%; }
    100% { width: 50%; } /* 2.5 out of 5 steps completed */
  }

.progress-percentage{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.current-status{
  padding: 2rem auto;
  text-align: center;
  margin: 4rem;
}
/*=======================End of Next-steps Page===============================*/

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.image-container:hover img {
  transform: scale(1.05); /* subtle zoom effect */
}

.view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1f1d1a;
  padding: 0.6em 1.2em;
  border: 1px solid #f4f4f1;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'playfair-display', sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* avoids accidental clicks before visible */
}

.overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* so clicks pass through to button */
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover .view-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
  pointer-events: auto;
}

@media screen and (min-width: 760px) {

    .hero h1 {
    font-size: 3.5rem;
    }

  /*======================= This is for the Contact Page===============================*/

  .contact-container{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  height: auto;
  padding: 4rem;
  }

  .contact-info{
    width: 100%;
    height: auto;
  }

  .form-container {
    align-items: center;
    justify-content: center;
  }

  .contact-form {
    width: 100%;
    height: auto;
  }

  /*======================= This is the end of the Contact Page===============================*/


    .services-at-revision {
    padding: 3rem;
    }

    .service-highlight{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    }

    .scroll-wrapper {
    padding: 8rem;
    }

    .whowehelpcontainer{
    display: flex;
    flex-direction: row;
    gap: 10rem;
    }

    .how-it-works-wrapper {
    padding: 3.5rem 2rem;
    }

    .how-it-works-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    }

    .template-title{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    }

    .arrow{
    width: 35%;
    height: auto;
    margin: 0.5rem;
    cursor: pointer;
    }

    .slide {
    flex: 0 0 50%; /* 2 slides at a time */
    align-items: stretch;
    }

    .slide.single-slide {
      flex-basis: 50% !important;
    }

    .what-its-like-container{
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .jasmine-working{
      width: 80%;
      margin: 0 auto;
    }

    /*=======================Start-Of-Shop-Page===============================*/
      .shop-container{
        padding: 2rem;
      }

      .filter-group {
        width: 100%;
      }

    /*=======================End-Of-Shop-Page===============================*/

    /*=======================About-Page===============================*/

    .about-whowehelp-container{
    display: flex;
    flex-direction: column;
    }

    .providers-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    align-items: stretch;
    padding: 2rem 2rem;
    }

    .provider-title{
    text-align: left;
    }

    .arrow4{
    display: inline-flex;
    justify-self: center;
    width: 30px;
    }

    .provider-box{
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: start;
      text-align: left;
      padding: 1rem;
    }

    .button-link-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    }

    .lets-work-together-boxes-container, .lets-work-together-boxes-container2{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    padding: 0 2rem 2rem;
    }

    .lets-work-together-box{
    display: flex;
    flex-direction: column;
    color: #000;
    width: 100%;
    height: auto;
    white-space: none;
    flex: 1 1 calc(50% - 1.5rem);
    }

    .flex-faq {
      padding: 5rem;
    }
    /*=======================End of About-Page===============================*/
    
    /*=======================How-It-Works-Page===============================*/

    .hiw-step-by-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid #1f1d1a;
    gap: 3rem;
  }

  .hiw-step-title-container{
    width: 100%;
    height: auto;
  }

  .hiw-step-image-container{
    width: 100%;
    height: 450px;
    overflow: hidden;
  }

  .hiw-step-image-container img{
    width: 100%;
    height: auto;
  }

/*=======================End of How-It-Works-Page===============================*/

    .pricing-section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    }

    .faq-content h2 {
    margin-bottom: 0;
    }

    footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-title-container {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 25%;
    height: auto;
}

.title2{
  border-bottom: none;
}

.footer-col{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-right: 1px solid #333;
}

.footer-col:last-child{
  border-right: none;
}

.footer-col ul li{
  list-style: none;
  text-align: left;
}

.footer-link-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

.max-width { /* This is going to be more relaxed as the viewport increases*/
  max-width: 700px;
  margin: 0 auto;
}

.pricing-container{
  margin: 0 2rem;
}

 .features-grid {
  text-align: left;
 }

 .steps, .progress-section {
  padding: 0 3rem;
}
}

@media screen and (min-width: 900px) {
    .desktop-nav {
        display: block;
    }

    .mobile-nav {
        display: none;
    }

    .whatweoffercontent{
    width: 80%;
    height: auto;
    }

    .services-at-revision {
    padding: 7rem 5rem;
    }

    .service-highlight{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    }

    .how-it-works-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    }

    .button3, .button, .button5 {
    max-width: max-content;
    }

    .arrow{
    width: 20%;
    height: auto;
    }

    .slide.single-slide {
    flex-basis: 25% !important;
    }

    .slider-track{
    margin: 1rem;
    }

    .pricing-section{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    }

    .what-its-like-container{
      display: flex;
      flex-direction: row;
      padding: 5rem 5rem;
    }

    .button-link-container{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: left;
    }

    .what-its-like-content {
      padding: 2rem;
    }

    .jasmine-working{
      width: 45%;
      height: 620px;
      margin: auto;
    }
    /*=======================Contact-Page===============================*/

    .contact-container{
      display: flex;
      flex-direction: row;
      gap: 2rem;
      height: auto;
      padding: 4rem 2rem;
    }

    .contact-info{
      width: 50%;
    }

    .form-container{
      width: 50%;
    }

    /*=======================End of Contact-Page===============================*/

    /*=======================Start of Shop-Page===============================*/

      .search-bar-container{
        width: 50%;
      }

      .shop-container{
      padding: 2rem 4rem;
      }
    /*=======================End of Shop-Page===============================*/



    /*=======================How-It-Works-Page===============================*/

      .hiw-step-by-step {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      padding: 4rem;
      gap: 3rem;
    }

      .hiw-step-image-container{
        width: 40%;
        height: auto;
      }

      .hiw-step-title-container{
        width: 60%;
        height: auto;
      }

      .hiw-step-by-step:nth-child(even) {
      flex-direction: row-reverse;
      }

  /*=======================End of How-It-Works-Page===============================*/



    /*=======================About-Page===============================*/

    .section-intro{
    text-align: left;
    }

    .provider-quote{
    text-align: left;
    font-weight: 100;
    font-size: 2rem;
    }

    .providers-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    align-items: start;
    padding: 0;
    gap: 1.5rem;
    }

    .whowehelp-title-column{
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 0;
    margin: 1rem;
    }

    .about-whowehelp-container{
    display: flex;
    flex-direction: row;
    padding: 4rem;
    }

    .border-left{
      border-left: 1px solid #f4f4f1;
      padding: 2rem;
    }

    .lets-work-together-boxes-container2{
      padding: 0 3rem 0;
    }

    .lets-work-together-box, .lets-work-together-box2{
      flex: 1 1 calc(33.333% - 1.5rem);
    }

    /*=======================End of About-Page===============================*/


    footer{
      margin-top: 3rem;
    }

    .footer-logo {
    width: 12rem;
    }

    .footer-title-container{
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
    }

    .footer-title-container p{
    max-width: 70%;
    }

    .footer-link-container {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      border: none;
    }

    .footer-content{
      max-width: 80%;
    }

    .max-width { /* This is going to be more relaxed as the viewport increases*/
      max-width: 800px;
      margin: 0 auto;
    }

    .pricing-container{
      margin: 0 1rem;
    }

    .features-grid {
    grid-template-columns: repeat(3, 1fr);
    }

    .next-steps-container{
    display: flex;
    flex-direction: column;
    background-color: #f4f4f1;
    color: #1f1d1a;
    padding: 3rem;
  }

   .steps, .progress-section {
  padding: 0 5rem;
}

  .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (min-width: 1200px) {
    body{
    max-width: 3200px;
    margin: 0 auto;
    }

    .hero{
      margin: 6.5rem 0;
    }

    .flex-faq {
      max-width: 1500px;
      margin: 0 auto;
    }

    .contact-container{
      display: flex;
      flex-direction: row;
      gap: 3rem;
      height: auto;
      padding: 4rem 15rem;
    }

    .pricing-container{
      margin: 0 15rem;
    }
      
    /*=======================About-Page===============================*/

    .about-content{
      max-width: 95%;
    }

    .lets-work-together-title h4{
    text-align: left;
    }

    .lets-work-together-title p {
    text-align: left;
    }

    .lets-work-together-container {
      padding: 6rem 9rem;
    }

    .about-whowehelp-container{
    padding: 6rem 10rem;
    }

    .providers-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 2rem;
    }

    /*=======================End of About-Page===============================*/

    /*=======================Start of Shop-Page===============================*/
      .shop-container{
      padding: 2rem 15rem;
      }

    /*=======================How-It-Works-Page===============================*/

    .hiw-steps-container{
      padding: 3rem 6rem;
      gap: 4rem;
      margin: 0 auto;
    }

    .hiw-step-by-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 3rem 15rem;
    border: 1px solid #1f1d1a;
    gap: 4rem;
    margin: 0 auto;
  }

  .hiw-step-image-container{
    width: 40%;
    height: auto;
  }

  .hiw-step-title-container{
    width: 60%;
    height: auto;
  }
/*=======================End of How-It-Works-Page===============================*/


    .max-width { /* This is going to be more relaxed as the viewport increases*/
    max-width: 900px;
    margin: 0 auto;
    }

    .footer-link-container {
    max-width: 80%;
    }

    .slider-container {
    max-width: 80%;
    margin: 0 auto;
    }

    .slide.single-slide {
      flex-basis: 50% !important;
    }

    .template-title{
    max-width: 80%;
    margin: 0 auto;
    }

    .pricing-section{
      gap: 2rem;
    }

    .what-its-like-container{
      padding: 5rem 8rem;
      gap: 8rem;
    }

    .what-its-like-content{
      margin: 2rem auto;
    }

    .footer-logo {
    width: 15rem;
    }

    .progress-section{
      width: 75%;
    }

    .steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 0.5fr));
    padding: 0 15rem;
    }


}

@media screen and (min-width: 2000px) {
  body {
    max-width: 3000px;
    margin: 0 auto;
  }

  .mobile-menu {
    display: none;
  }

  .what-its-like-container{
    padding: 15rem;
  }

  .pricing-container{
    margin: 0 30rem;
  }

}