*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(90deg,rgb(0, 255, 136, 0.1),rgb(0, 119, 255, 0.1));
}
/* USe Hero Section */
#use-hero-seciton{
    height: fit-content;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 30px 0;
}
#use-hero-seciton h1{
    font-size: 40px;
    text-align: center;
    font-family: "Varela Round", sans-serif;
}
#use-hero-seciton h1 span {
    font-size: 40px;
    font-family: "Varela Round", sans-serif;
    background: linear-gradient(90deg, #00ff88, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;
}
#use-hero-seciton p{
    text-align: center;
    font-size: medium;
    color: gray;
}
#use-hero-seciton a{
    text-align: center;
    font-size: medium;
    color: #0077ff;
    text-decoration: none;
}
#use-hero-seciton img{
    height: 300px;
    width: auto;
    border-radius: 20px;
    object-fit: contain;
}

@media (max-width: 768px) {
#use-hero-seciton img {
    height: auto;
    width: 500px;}
}
@media (max-width: 600px) {
    #use-hero-seciton img {
        height: auto;
        width: 330px;
    }
}

 /* Tabs container */
    .use-tab-container {
      text-align: center;
      padding: 20px;
    }

    /* Tab buttons */
    .use-tab-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .use-tab-button {
      background: black;
      color: white;
      padding: 10px 20px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
      border: none;
      transition: 0.3s;
    }

    .use-tab-button.active {
      background: #FFD966;
      color: black;
    }

    /* Content */
    .use-tab-content {
      display: none;
      max-width: 1000px;
      margin: auto;
      text-align: left;
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .use-tab-content.active {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      justify-content: center;
    }

    .use-tab-content img {
      max-width: 500px;
      border-radius: 10px;
      flex: 1 1 300px;
    }

    .use-tab-text {
      flex: 1 1 300px;
    }

    .use-tab-text h2 {
      font-size: 26px;
      margin-bottom: 15px;
    }

    .use-tab-text p {
      color: #333;
      line-height: 1.6;
      font-size: small;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .use-tab-content {
        flex-direction: column;
        text-align: center;
      }
      .use-tab-text {
        text-align: center;
      }
      .use-tab-content img {
    width: 300px;
}
}

/* use-last-text-section */
#use-last-text-section{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
    gap: 10px;
    align-items: center;
}
#use-last-text-section h2{
    font-size: 40px;
    text-align: center;
    width: 50%;
    font-family: "Varela Round", sans-serif;
}
#use-last-text-section h2 span {
    font-size: 40px;
    font-family: "Varela Round", sans-serif;
    background: linear-gradient(90deg, #00ff88, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;
}
#use-last-text-section a{
    color: black;
    height: fit-content;
    width: fit-content;
    font-weight: 600;
    padding: 10px 20px;
    background: linear-gradient(90deg, #00ff88, #0077ff);
    text-decoration: none;
    border-radius: 20px;
}
    @media (max-width: 600px){
#use-last-text-section h2{
    width: 80%;
}
    }