/* Styles for Info Pages (Tips, Privacy, Disclaimer) */

.info-page-section {
    padding: 60px 0;
    background-color: #fff;
    min-height: 80vh;
}

.info-content {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.info-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    font-size: 32px;
}

.info-content h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.info-content p {
    margin-bottom: 20px;
}

/* Lists in Tips */
.info-content ol {
    counter-reset: item;
    padding-left: 0;
}

.info-content ol > li {
    display: block;
    margin-bottom: 15px;
    margin-left: 0;
    position: relative;
    padding-left: 40px;
}

.info-content ol > li:before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    font-weight: bold;
}

.info-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

.info-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    border-left: 3px solid #eee;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: border-left-color 0.2s;
}

.info-content ul li:hover {
    border-left-color: #007bff;
}

.info-content ul li:before {
    /* content: "•"; */
    /* position: absolute; */
    /* left: 0; */
    /* color: #007bff; */
    /* font-weight: bold; */
}

/* Nested lists */
.info-content ol li ol {
    margin-top: 10px;
    padding-left: 0;
}

.info-content ol li ol li {
    padding-left: 20px;
    margin-bottom: 5px;
}

.info-content ol li ol li:before {
    content: none;
}

.button-icon {
    font-weight: bold;
    background: #f1f1f1;
    padding: 2px 6px;
    border-radius: 4px;
    color: #333;
    font-size: 0.9em;
}

/* Privacy & Disclaimer Specifics */
.last-updated {
    font-style: italic;
    color: #888;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 14px;
}

