/* Disable drag selection */
*, *::after, *::before {
    -webkit-user-drag: none;
    -webkit-app-region: no-drag;
    cursor: default;
}

/* Global layout */
html, body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: royalblue;
    color: #f2f2f2;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.6;
}

/* Headings */
h1, h2 {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.2em;
    margin-top: 40px;
    padding-bottom: 6px;
}

/* Main container */
.policy-container {
    background: rgba(51, 51, 51, 0.3);
    border-radius: 10px;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 900px;

}

/* Title */
.policy-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Navigation */
.navigation {
    background: rgba(245,245,245,0.1);
    border-radius: 10px;
    padding: 10px 30px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navigation h1 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.navigation ol {
    padding-left: 20px;
    margin: 0;
}

.navigation li {
    margin-bottom: 10px;
}

.navigation a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

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

/* Table styling */
.information-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.information-table th {
    background: rgba(255,255,255,0.15);
    color: #f2f2f2;
    text-align: left;
    padding: 12px 10px;
    font-weight: 600;
}

.information-table td {
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #f2f2f2;
}

.information-table tr:hover {
    background: rgba(255,255,255,0.2);
}

/* Contact section */
.contact-information {
    padding: 25px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Links and paragraphs */
p, li {
    color: #f2f2f2;
    font-size: 1.05em;
    max-width: 900px;
    margin: 0px auto;
}

a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: orange;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-container {
        width: 90vw;
        padding: 25px;
    }

    .policy-title {
        font-size: 32px;
    }

    .navigation {
        padding: 20px;
    }
}
