.home-button-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.home-button {
    display: inline-block;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #040303;
    background-color: rgb(218, 225, 36); /* Matches the theme's primary color */
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.home-button:hover {
    background-color: #95b300; /* Darker shade for hover effect */
    transform: translateY(-2px); /* Slight lift on hover */
}

.home-button:active {
    background-color: #caf108; /* Even darker shade for active state */
    transform: translateY(0); /* Reset lift on click */
}
#policy-container {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Matches a light theme */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-header {
    text-align: center;
    margin-bottom: 20px;
}

.policy-header h1 {
    font-size: 2.5em;
    color: #444;
    font-weight: bold;
}

.policy-header p {
    font-size: 1.2em;
    color: #666;
}

.policy-content h2 {
    font-size: 1.8em;
    margin-top: 20px;
    color: #444;
    border-bottom: 2px solid rgb(218, 225, 36); /* Adds a theme-colored underline */
    padding-bottom: 5px;
}

.policy-content p {
    font-size: 1em;
    margin: 10px 0;
}

.policy-content a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 1em;
    color: #666;
}

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

    .policy-header h1 {
        font-size: 2em;
    }

    .policy-header p {
        font-size: 1em;
    }

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

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

@media (max-width: 480px) {
    #policy-container {
        padding: 10px;
    }

    .policy-header h1 {
        font-size: 1.8em;
    }

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

    .policy-content h2 {
        font-size: 1.3em;
    }

    .policy-content p {
        font-size: 0.8em;
    }
}