/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffeee6;
    color: #333;
}
/* Breadcrumb Styling (part of the main content) */
.breadcrumb {
    max-width: 100%; /* Full width of the content area */
    margin-bottom: 10px; /* Small gap between breadcrumb and content */
    padding: 10px 20px; /* Add padding for a better look */
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-align: left;
}

/* Breadcrumb Links */
.breadcrumb a {
    color: #ad013d;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
    cursor: not-allowed;
}
h1, h2 {
    color: #ad013d;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

a {
    color: #ad013d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Privacy Policy Section */
.privacy-policy, .terms-conditions {
    max-width: 800px;
    margin: 10px auto 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top:90px;
}

.privacy-policy h1, .terms-conditions h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.privacy-policy h2, .terms-conditions h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.privacy-policy p, .terms-conditions p {
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 900px) {

    .privacy-policy h1, .terms-conditions h1 {
        font-size: 24px;
    }

    .privacy-policy h2, .terms-conditions h2 {
        font-size: 20px;
    }

    .privacy-policy p, .terms-conditions p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .privacy-policy, .terms-conditions {
        padding: 15px;
    }

    .privacy-policy h1, .terms-conditions h1 {
        font-size: 22px;
    }

    .privacy-policy h2, .terms-conditions h2 {
        font-size: 18px;
    }

    .privacy-policy p, .terms-conditions p {
        font-size: 14px;
    }
}

/* list */
/* Unordered List (ul) */
ul {
    list-style-type: disc; /* Default bullet points */
    margin: 10px 0 10px 20px; /* Indent similar to paragraphs */
    padding-left: 20px;
    font-size: inherit; /* Inherit font size from the parent (matches paragraph size) */
    color: inherit; /* Inherit the same color as the parent */
    line-height: inherit; /* Inherit line-height for consistency */
}

/* Ordered List (ol) */
ol {
    list-style-type: decimal; /* Default numbered list */
    margin: 10px 0 10px 20px; /* Indent similar to paragraphs */
    padding-left: 20px;
    font-size: inherit; /* Inherit font size from the parent */
    color: inherit; /* Inherit the same color as the parent */
    line-height: inherit; /* Inherit line-height for consistency */
}

/* List items */
ul li, ol li {
    margin-bottom: 10px; /* Space between list items for better readability */
}

/* Responsive List Adjustments */
@media (max-width: 900px) {
    ul, ol {
        margin: 10px 0 10px 20px;
        padding-left: 20px;
        font-size: 15px; /* Matches the adjusted font size on smaller screens */
    }
}

@media (max-width: 600px) {
    ul, ol {
        margin: 10px 0 10px 20px;
        padding-left: 20px;
        font-size: 14px; /* Matches the font size on smaller screens */
    }
}

