

.header {
    text-align: center;
    padding: 10px 0;
}

.header img {
    max-width: 200px;
}

.content {
    margin: 20px 0;
}

h3,
h4 {
    size: 0.5em;
    color: #007BFF;
}

.trade-preview {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.cta-button {
    background-color: #28a745;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.tip,
.testimonial {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #888;
    width: 100%;
}
.footer p {
    display: inline; /* Makes the <p> elements inline */
    margin: 0; /* Removes extra spacing */
}
.footer a {
    color: #007BFF;
    text-decoration: none;
}

.image-container {
    text-align: center;
    margin: 10px 0;
    cursor: pointer;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

#imageOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#imageOverlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

#imageOverlay .close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.block-overlay a:hover {
    text-decoration: underline;
}
.premium-call-to-action {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    text-align: center;
    color: #333;
    margin-top: 20px;
}

.premium-call-to-action a {
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
}

.premium-call-to-action a:hover {
    text-decoration: underline;
}

.premium-call-to-action strong {
    color: #d9534f; /* Highlight "Premium Membership" */
}
.border-box {
    border: 1px solid black; /* Border style */
    padding: 10px; /* Space inside the border */
    margin: 10px 0; /* Space outside the border */
    border-radius: 5px; /* Optional: Rounded corners */
}