* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    background-color: #ffffff;
    color: #222;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.tagline {
    display: inline-block;
    background-color: #eaf3ff;
    color: #1a73e8;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.faq-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    color: #555;
    margin-bottom: 40px;
    font-size: 16px;
}

/* FAQ Items */
.faq-container {
    text-align: left;
}

.faq-item {
    background-color: #82858752;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 15px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/*tips*/

.tips {
    margin-top: 90px;
    text-align: center;
}

.tips h2 {
    font-size: 32px;
    color:#2d097c;
    margin-bottom: 25px;
}

.tips-desc {
    max-width: 750px;
    margin: auto;
    color: #555;
    margin-bottom: 40px;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.177);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 15px;
}

.tip-card span {
    font-size: 25px;
}

.tip-card h3 {
    margin: 15px 0 10px;
    color: #333;
}

.tip-card p {
    font-size: 13px;
    color: #555;
}