/* Root Variables for Theme Colors */
:root {
    --primary-color: #ff6600;  /* Orange */
    --secondary-color: #333; /* Dark Gray */
    --background-color: #f9f9f9; /* Light Gray */
    --text-color: #ffffff; /* Almost Black */
    --border-color: rgba(255, 102, 0, 0.6); /* Light Orange */
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: black !important;
    margin: 0;
    padding: 0;
}

/* Content Container */
.content-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff; /* White background for a clean look */
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

/* Heading Style */
.content-heading {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Horizontal Line */
hr {
    border: none;
    height: 2px;
    background: var(--primary-color);
    margin: 10px 0 20px;
}

/* Paragraphs */
p {
    font-size: 16px;
    line-height: 1.8;
    color: black !important;
}

/* Apply styles ONLY to ul inside content-container */
.content-container ul {
    padding: 0;
    list-style-type: disc; /* Bullet Points will still appear */
    margin-left: 20px;
}

/* Custom Bullet Point only inside policy container */
.content-container ul.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Custom ✔ only inside policy-list */
.content-container ul.policy-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Highlight Important Sections */
p b {
    color: var(--primary-color);
    font-size: 18px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content-container {
        max-width: 95%;
        padding: 20px;
    }
    
    .content-heading {
        font-size: 24px;
    }
    
    p, ul li {
        font-size: 14px;
    }
}

/* Mobile View */
@media screen and (max-width: 480px) {
    .content-container {
        padding: 15px;
    }

    .content-heading {
        font-size: 22px;
    }

    p, ul li {
        font-size: 13px;
    }
}






    .table-responsive {
        overflow-x: auto;
    }
    .subscription-table {
        width: 100%;
        border-collapse: collapse;
    }
    .subscription-table th, .subscription-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }
    .subscription-table th {
        background-color: #f4f4f4;
        font-weight: bold;
    }
    @media (max-width: 600px) {
        .subscription-table th, .subscription-table td {
            padding: 6px;
            font-size: 14px;
        }
    }