.product-section {
    background-color: #f4f4f4;
}
.product-container {
    --secondary-color: #4f46e5;
    --primary-color: #3498db;
    --dark-color: #1e293b;
    --price-color: #3498db;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    * {
            box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

   color: var(--dark-color);
   line-height: 1.6;
   padding: 4rem 2rem;
   width: 100%;

    height: max-content;
    margin-bottom: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #f4f4f4;
}

.terms-container {
    --secondary-color: #4f46e5;
    --primary-color: #3498db;
    --dark-color: #1e293b;
    --price-color: #3498db;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    * {
            box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

   color: var(--dark-color);
   line-height: 1.6;
   padding: 4rem 2rem;
   width: 100%;
   margin: 0  auto;

    height: max-content;
    margin-bottom: 2rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    max-width: 1200px;
    #padding: 20px 20px;
    background-color: #f4f4f4;
}

.example-conversion1 {
    width: 100%;
    display: flex;
    align-items: center
  justify-content: center
  text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.example-conversion2 {
    width: 100%;
    display: flex;
    align-items: center
  justify-content: center
  text-align: center;
}

.example-image-1 {
    box-shadow: 0px 2px 3px rgba(0,0,0,0.5);
    display: inline-block;
    margin-right: 1%;
    width: 44%;
    align-items: center
  text-align: center;
    justify-content: center
}

.example-image-2 {
    box-shadow: 0px 2px 3px rgba(0,0,0,0.5);
    display: inline-block;
    margin-right: 1%;
    margin-left: 1%;
    margin-bottom: 2rem;
    margin-top: 2rem;
    width: 98%;
    align-items: center
  text-align: center;
    justify-content: center
}

.example-arrow-1 {
    text-align: center;
    width: 10%;
    align-items: center
  justify-content: center
}

.converted_image1 {
    margin-right: 0;
    margin-left: 1%;
    transform: none;
    width: 44%;
    align-items: center
  text-align: center;
    justify-content: center
}

.product-header {
    text-align: center;
    margin-bottom: 3rem;
    align-items: center;
}

.product-header2 {
    #text-align: center;
    margin-bottom: 3rem;
    #align-items: center;
    padding: 4rem 1rem 18rem 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    #color: var(--dark-color);
    color: #3498db;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    #color: var(--dark-color);
    color: var(--dark-color);
    text-align: left;
    font-weight: normal;
}

.product-header p {
    font-size: 1.1rem;
    color: var(--dark-color);
    #color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.toggle-label {
    margin: 0 1rem;
    color: var(--gray-color);
    font-weight: 500;
}

.toggle-label.active {
    color: var(--primary-color);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    #grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    #gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    #padding: 2.5rem 2rem;
    padding: 40px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: var(--price-color);
}

.price span {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: normal;
}

.product-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.features-list li i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: ##52D24A;
    border-color: #4338ca;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .product-cards {
        grid-template-columns: 1fr;
    }

    .product-card {
        background-color: #f4ffff;
    }

    h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    h3 {
        font-size: 1.0rem;
        text-align: left;
    }

    .product-section {
        padding: 2rem 1rem;
    }

    .product-header2 {
      padding: 1rem 1rem 1rem 1rem;
    }

    .terms-container {
     margin-left: 1rem;
     margin-right: 1rem;
    }
}
