/* Tips Page-Specific Styles */
.hero {
    background: rgb(214,122,8);
    background: linear-gradient(90deg, rgba(214,122,8,1) 35%, #643ea8 100%);
    padding: 80px 20px;
}

.tips-section {
    padding: 30px;
    text-align: center;
}

.tips-section h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #333;
}

.tips-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Styled list */
.tips-section ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.tips-section ul li {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tips-section ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tips-section ul li::before {
    content: '✔';  /* A simple checkmark as a custom bullet */
    color: #f39200;
    font-size: 24px;
    margin-right: 15px;
}

.tips-section ul li p {
    margin: 0;
    font-size: 18px;
    color: #555;
}

/* Media Queries */
@media (max-width: 768px) {
    .tips-section h2 {
        font-size: 28px;
    }

    .tips-section ul li {
        padding: 15px;
    }

    .tips-section ul li p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tips-section ul li p {
        font-size: 14px;
    }
}
