
 /* Section 1 */
 
 .inventory-section {
    background-color: #E6007E;
    color: white;
    display: flex;
    flex-direction: column;
    padding: clamp(.1rem, 4.3vw, 100rem) 10%;
}


.inventory-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(.1rem, 2vw, 100rem);
}

.inventory-text {
    display: flex;  
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 30%;
}

.inventory-text h1 {
    font-size: clamp(.1rem, 2.5vw, 100rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: clamp(.1rem, .4vw, 100rem);
}

.inventory-text h2 {
    font-size: clamp(.1rem, 1.4vw, 100rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: clamp(.1rem, 2.5vw, 100rem);
}

.inventory-button {
    font-size: clamp(.1rem, .8vw, 100rem);
    padding: clamp(0.5rem, .9vw, 100rem) clamp(1rem, 2vw, 100rem);
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    background-color: white;
    color: #E6007E;
    border: 2px solid white;
}
.inventory-button:hover {
    background-color: #E6007E; 
    color: white;              
    border-color: 2px solid #E6007E;     
}
.inventory-image {
    display: flex;
   width: 100%;
   justify-content: center;
}

.inventory-image img {
    width: 75%;
    height: 65%;
    object-fit: cover;
}

/* Responsive Styles - Media query for mobile */
@media (max-width: 767px) {
    .inventory-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .inventory-section {
        padding: 10% 0 10% 0;
    }
    .inventory-image img {
        width: 100%;
    }
    .inventory-text h1 {
        font-size: clamp(.1rem, 7vw, 100rem);
    }
    .inventory-text h2 {
        font-size: clamp(.1rem, 4.5vw, 100rem);
        margin-bottom: clamp(.1rem, 7vw, 100rem);
    }
    .inventory-button {
        font-size: clamp(.1rem, 3vw, 100rem);
        margin-bottom: clamp(.1rem, 7vw, 100rem);
    }
    .inventory-text {
        padding-left: 5%;
        width: 60%;
    }
}


/* Section  2*/

  
.clarity-section {
    background-color: white;
    padding: clamp(.1rem, 7vw, 100rem) 10% 4% 10%;

}

.clarity-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(.1rem, 1vw, 100rem);
    margin-bottom: clamp(.1rem, 10vw, 100rem);
    margin-right: 5%;
}

.clarity-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
   
}

.clarity-image img {
    width: 70%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    justify-content: center;
}

.clarity-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: clamp(.1rem, 31vw, 100rem);
}

.clarity-text .pink-heading {
    color: #E6007E;
    font-size: clamp(.1rem, 1.94vw, 100rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: clamp(1rem, 1.3vw, 100rem);
}

.clarity-text p {
    color: #5B5B5B;
    font-size: clamp(0.1rem, 1.1vw, 100rem);
    line-height: 1.4;
    margin-bottom: 0; /* Remove bottom margin from this paragraph */
}

.clarity-features-container {
    display: flex;
    flex-direction: row;
    gap: clamp(.1rem, 1vw, 100rem);
    margin-top: clamp(2rem, 5vw, 3rem); /* Add some space above the features */
}

.clarity-sub-heading {
    color: #E6007E;
    font-size: clamp(.1rem, 1.94vw, 100rem);
    font-weight: 700;
    line-height: 1.1;
    margin-top: clamp(1rem, 2vw, 100rem);
    margin-bottom: clamp(1.5rem, 3vw, 100rem);
}

.clarity-feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: clamp(.1rem, 3vw, 100rem);
    border: 1px solid #e6007f1e;
    padding: 4%;
    box-shadow: 0 4px 20px #e6007f17; /* soft shadow */
  }
  

.clarity-feature-box h3 {
    font-size: clamp(.1rem, 1.4vw, 100rem);
    font-weight: bold;
    color: #00165E;
    margin-bottom: clamp(.1rem, .5vw, 100rem);
    margin-left: 15%;
}

.clarity-feature-box p {
    color: #5B5B5B;
    font-size: clamp(0.1rem, 1.1vw, 100rem);
    line-height: 1.3;
    margin-bottom: 0;
}

.clarity-feature-box .icon2 {
    font-size: clamp(.1rem, 4vw, 100rem);
    margin-bottom: clamp(.1rem, 2vw, 100rem);
}
.icon2{
    display: flex;
    align-items: flex-end;
}
.icon2 img {
    width: clamp(.1rem, 3vw, 100rem);
    height: clamp(.1rem, 3vw, 100rem);
    object-fit: contain;
  }


/* Responsive Styles - Media query for mobile */
@media (max-width: 767px) {
    .clarity-content,
    .clarity-features-container {
        display: flex;
        flex-direction: column;
        margin: 0;
        align-items: flex-start;
    }
    .clarity-image img {
        width: 100%;
    }
    .clarity-section {
        padding: 5%;
    }
    .clarity-text .pink-heading {
        font-size: clamp(.1rem, 6vw, 100rem);
        margin-top: 10%;
        margin-bottom: 10%;
    }
    .clarity-text {
        width: 100%;
    }
    .clarity-text p {
        font-size: clamp(0.1rem, 4.2vw, 100rem);
    }
    .clarity-sub-heading {
        font-size: clamp(.1rem, 6vw, 100rem);
        margin-top: 20%;
    }
    .clarity-feature-box h3 {
        font-size: clamp(.1rem, 5vw, 100rem);
    }
    .clarity-feature-box p {
        font-size: clamp(0.1rem, 4.4vw, 100rem);
    }
    .icon2 img {
        width: clamp(.1rem, 10vw, 100rem);
        height: clamp(.1rem, 10vw, 100rem);
        object-fit: contain;
      }
      .clarity-feature-box .icon2 {
        margin-bottom: clamp(.1rem, 6vw, 100rem);
      }
}


  /* Section 3 */
  .cta-section {
    background-color: #E6007E;
    display: flex;
    min-height: clamp(.1rem, 31vw, 100rem);
    padding: 10% 10% 10% 10%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 44%;
}

.cta-content h1 {
    color: white;
    font-size: clamp(.1rem, 1.94vw, 100rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3%;
}

.cta-content p {
    color: white;
    font-size: clamp(0.1rem, 1.12vw, 100rem);
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 6%;
}

.cta-button {
    font-size: clamp(0.1rem, .83vw, 100rem);
    padding: clamp(0.75rem, .79vw, 100rem) clamp(1.5rem, 1.7vw, 100rem);
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: white;
    color: #00165E;
    border: 2px solid white;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

/* Responsive Styles - Media query for mobile */
@media (max-width: 767px) {
    .cta-section{
        padding: 30% 0 30% 0;
    }
    .cta-content{
        width: 85%;
    }
    .cta-content h1 {
        font-size: clamp(.1rem, 6vw, 100rem);
        text-align: center;
    }
    .cta-content p {
        font-size: clamp(0.1rem, 4vw, 100rem);
    }
    .cta-button {
        font-size: clamp(0.1rem, 3vw, 100rem);
    }
}