.trade-safely-wrap {
    width: 95%;
    max-width: 1000px;
    margin: 3.5% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Fredoka', Arial, sans-serif;
    color: #1c1c1c;
    line-height: 1.55;
}

/* Page Title */
.ts-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: #002f7a;
}

/* Banner Image */
.ts-banner {
    width: 100%;
    max-width: 750px;
    border-radius: 14px;
    margin: 25px auto 40px;
    display: block;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ts-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* Sections */
.ts-section {
    width: 80%;
    background: #f9fbff;
    padding: 25px 28px;
    margin-bottom: 30px;
    border-radius: 14px;
    border-left: 6px solid #8ab6ff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ts-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002f7a;
    margin-bottom: 15px;
    border-bottom: 3px solid #8ab6ff;
    display: inline-block;
    padding-bottom: 6px;
}

/* Paragraphs */
.ts-section p {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

/* Example box */
.example {
    background: #fffbe6;
    border-left: 4px solid #f7d23e;
    padding: 12px 15px;
    border-radius: 10px;
    margin: 10px 0;
}

/* Important Note box */
.note {
    background: #e8f2ff;
    border-left: 4px solid #8ab6ff;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 500;
    margin: 10px 0;
}

/* Safety tips list */
.ts-safety-list {
    width: 100%;
    background: #f9fbff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 25px;
}

.ts-safety-list li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.55;
}

.ts-safety-list li::before {
    content: "✔";
    color: #002f7a;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Subtitle for safety tips */
.ts-subtitle {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #002f7a;
    margin: 40px 0 20px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .ts-title {
        font-size: 32px;
    }
    .ts-section h2 {
        font-size: 26px;
    }
    .ts-section p,
    .example,
    .note,
    .ts-safety-list li {
        font-size: 16px;
    }
    .ts-safety-list {
        padding: 20px;
    }
}
