/* General Container Styles */
.privacy-container {
    max-width: 1200px;
    margin: 7em auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    color: #a9bcd0;
    background-color: #0d1b2a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header Styling */
.privacy-container h1 {
    font-size: 2.5em;
    color: #38b6ff;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #38b6ff;
    padding-bottom: 10px;
}

/* Policy Section Styling */
.policy {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #38b6ff;
    border-radius: 8px;
    background-color: #112233;
    transition: transform 0.3s, box-shadow 0.3s;
}

.policy:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Policy Headers */
.policy h2 {
    font-size: 1.8em;
    color: #38b6ff;
    margin-bottom: 10px;
}

/* Policy Text */
.policy p {
    font-size: 1em;
    line-height: 1.6;
    color: #d9d9d9;
    margin-bottom: 15px;
}

/* List Styling */
.policy ul {
    margin-left: 20px;
    list-style-type: disc;
}

.policy ul li {
    margin: 5px 0;
    color: #a9bcd0;
}

/* Links */
.policy a {
    color: #38b6ff;
    text-decoration: none;
    transition: color 0.3s;
}

.policy a:hover {
    color: #d9d9d9;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .container h1 {
        font-size: 2em;
    }

    .policy h2 {
        font-size: 1.5em;
    }

    .policy p {
        font-size: 0.9em;
    }
}

/*Terms and Conditions*/

/* General Container Styles for Terms */
.terms-container {
    max-width: 1200px;
    margin: 7em auto;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    color: #a9bcd0;
    background-color: #0d1b2a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header Styling */
.terms-container h1 {
    font-size: 2.5em;
    color: #38b6ff;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #38b6ff;
    padding-bottom: 10px;
}

/* Terms Section Styling */
.terms-section {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #38b6ff;
    border-radius: 8px;
    background-color: #112233;
    transition: transform 0.3s, box-shadow 0.3s;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Terms Headers */
.terms-section h2 {
    font-size: 1.8em;
    color: #38b6ff;
    margin-bottom: 10px;
}

/* Terms Text */
.terms-section p {
    font-size: 1em;
    line-height: 1.6;
    color: #d9d9d9;
    margin-bottom: 15px;
}

/* List Styling */
.terms-section ul {
    margin-left: 20px;
    list-style-type: disc;
}

.terms-section ul li {
    margin: 5px 0;
    color: #a9bcd0;
}

/* Links */
.terms-section a {
    color: #38b6ff;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-section a:hover {
    color: #d9d9d9;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .terms-container {
        padding: 15px;
    }

    .terms-container h1 {
        font-size: 2em;
    }

    .terms-section h2 {
        font-size: 1.5em;
    }

    .terms-section p {
        font-size: 0.9em;
    }
}
