/* Google Fonts From local drive */
@font-face {
    font-family: 'Montserrat'; /* Custom name for your font */
    src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype'); /* Specify format as 'truetype' */
    font-weight: normal; /* Adjust weight if needed */
    font-style: normal;  /* Adjust style if needed */
}


/* General body style */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a; /* Dark charcoal background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #f4f4f4; /* Light text color */
}

/* Centered policy box */
.policy-box {
    width: 800px;
    background: linear-gradient(135deg, #3a3a3a, #2b2b2b); /* Gradient from light charcoal to dark charcoal */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    overflow-y: auto;
    max-height: 90vh;
}

/* Headings styling */
h1, h2 {
    text-align: center;
    color: #fff;
}

/* Paragraph and list styling */
p, ul {
    line-height: 1.6;
    color: #ddd;
}

/* Link styling */
a {
    color: #007bff;
    text-decoration: none;
}

/* Button styling */
.btn {
    display: block;
    width: 160px;
    margin: 30px auto;
    padding: 12px 20px;
    background-color: #abdde8;
    padding: 10px 20px;
    font-size: 1.1em;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ae480a;
    color: white;
}