/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 15 2025 | 23:50:22 */
/* =================================================================
   FORMAL TERMS OF SERVICE STYLES
   ================================================================= */

/* Main container for the entire TOS document */
.tos-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7; /* Improves readability */
    color: #333; /* Dark gray text is easier on the eyes than pure black */
    max-width: 800px; /* Limits width for better line length on large screens */
    margin: 40px auto; /* Centers the container on the page */
    padding: 20px 30px; /* Adds some space inside the container */
    background-color: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft shadow for depth */
}

/* "Last Updated" text style */
.tos-container .last-updated {
    font-size: 14px;
    color: #666;
    text-align: left; /* Aligned to the left */
    margin-bottom: 30px; /* Space after the date */
}

/* Main Section Titles (e.g., "1. Acceptance of Terms") */
.tos-container h2 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-top: 40px; /* Space above each new section */
    margin-bottom: 15px;
    padding-bottom: 8px; /* Space between title and border */
    border-bottom: 2px solid #f0f0f0; /* Underline to separate sections */
}

/* Subsection Titles (e.g., "3.1. Service Scope") */
.tos-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Standard paragraph text */
.tos-container p {
    font-size: 16px;
    margin-bottom: 15px; /* Space between paragraphs */
}

/* Styling for lists (e.g., the country list) */
.tos-container ul {
    padding-left: 25px; /* Indent the list */
    margin-bottom: 15px;
}

.tos-container li {
    margin-bottom: 8px; /* Space between list items */
}

/* Make bold text stand out a bit more */
.tos-container strong {
    font-weight: 600;
    color: #000;
}

/* =================================================================
   RESPONSIVE STYLES for Mobile Devices
   ================================================================= */
@media (max-width: 768px) {
    .tos-container {
        padding: 15px 20px; /* Reduce padding on smaller screens */
        margin: 20px 10px; /* Reduce margin */
    }

    .tos-container h2 {
        font-size: 20px;
    }
}