/* General Page Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #F9F9F9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container for Terms & Privacy Pages */
.container {
    width: 80%;
    max-width: 800px;
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
    margin: 40px auto;
}

/* Fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Titles */
h1 {
    font-size: 28px;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
}

/* Section Titles */
h2 {
    font-size: 20px;
    color: #444;
    margin-top: 25px;
    border-left: 5px solid #FFC107;
    padding-left: 10px;
}

/* Paragraphs & Lists */
p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

ul {
    padding-left: 20px;
}

ul li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Links */
a {
    color: #FFC107;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Contact Email */
p a {
    color: #FFC107;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    p, ul li {
        font-size: 15px;
    }
}

.go-back{
    background-color: #222;
    color:#FFC107;
    padding: 15px 20px;
    border-radius: 10px;
    position: absolute;
    top: 5px;
    left: 5px;
}