body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #333333;
}

.container {
    position: relative;left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    margin: 12px 0 0 0;
    padding: 20px 20px 0;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    transition: top 0.5s ease;
    top: 3000px;
}

.container-2 {
    position: relative;
    max-width: 100%;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
}

@media (orientation: portrait) {
    .container{
        max-width: 96%;
    }
}

.container-footer {
    max-width: 100%;
    margin: 50px 0;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    font-size: 28px;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    margin-bottom: 16px;
    text-align: justify;
}

.highlight {
    color: #ff6347;
    font-weight: bold;
}

.tips {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff7e6;
    border: 1px solid #ffd591;
    border-radius: 8px;
}

.tips h2 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 16px;
}

.tips ul {
    list-style: none;
    padding: 0;
}

.tips li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.tips li .number {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.tips li .text {
    font-size: 16px;
}

.tips li .text span {
    font-weight: bold;
    color: #333333;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

h1 {
    text-align: center;
    color: #7b38f3;
    font-size: 2rem;
    margin: 20px 10px;
}

h2 {
    text-align: center;
    color: #7b38f3;
    font-size: 29px;
    margin: 20px 10px;
}

/* Container */
.container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    margin: 0 auto;
}

/* Card Style */
.card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(123, 56, 243, 0.2);
}

.card h2 {
    color: #7b38f3;
    font-size: 1.25rem;
    margin: 15px 0 10px;
    display: inline-block;
    position: relative;
}

.card:hover h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff5733, #f5b041, #58d68d, #5dade2, #af7ac5);
    bottom: -5px;
    left: 0;
    animation: underline-slide 0.6s ease-out;
}

@keyframes underline-slide {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.circle {
    position: absolute;
    top: -15px;
    left: 15px;
    background-color: #7b38f3;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.card p {
    font-size: 0.875rem;
    color: #555;
}

h2 {
    margin-bottom: 20px;
}

h4 {
    margin-bottom: 15px;
}

@media (max-width: 768px)  and (orientation: portrait) {
    h1 {
        font-size: 1.8rem;
        margin: 15px 10px;
    }

    .container-flex {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: none;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    h1 {
        font-size: 1.5rem;
    }

    .circle {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .card h2 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.8rem;
    }
}


 .services {
     text-align: center;
     padding: 50px 0;
     background-color: #f9f9f9;
 }

.section-title {
    font-size: 2rem;
    color: #7b38f3;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 44%;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (orientation: portrait) {
    .service-card {
        width: 100%;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(123, 56, 243, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    text-align: justify;
}


.fruits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.fruit-card {
    background-color: #ffe8c2;
    border: 1px solid #caa96d;
    border-radius: 10px;
    width: 100px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.fruit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #ffd28c;
}

.fruit-card:hover .fruit-text {
    color: black;
}

.fruit-card img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto 10px;
}

.fruit-number {
    position: relative;
    top: 4px;
    left: 0;
    background: #835c27;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fruit-text {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.fruit-text:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e67e22;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.fruit-text:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fruits .fruit-item {
    display: inline-block;
}

@media (max-width: 600px) and (orientation: portrait) {
    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .fruit-card {
        width: 80px;
        padding: 8px;
    }

    .fruit-card img {
        width: 40px;
        height: 40px;
    }

    .fruit-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}


.container1 {
    width: 100%;
    max-width: 100%;
    border: 2px solid #caa96d;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (orientation: portrait) {
    .container1{
        width: 100%;
    }
}


 .tips-container {
     max-width: 100%;
     margin: 0;
     background: #ffffff;
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     padding: 20px;
 }

.tip {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tip-number {
    background-color: orange;
    color: white;
    font-weight: bold;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.fruit-number {
    width: 20px;
    height: 20px;
    font-size: 10px;
}

.tip-content {
    font-size: 16px;
    flex: 1;
}

.tip-content strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #444;
}


 .faq-container {
     max-width: 100%;
     margin: 50px 0;
     background: #fff;
     border-radius: 8px;
     box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
     padding: 20px;
 }

.faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.faq-question img {
    width: 20px;
    height: 20px;
}

.faq-question:hover {
    color: #007BFF;
}

.faq-answer {
    display: none;
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
    overflow: hidden;
}
