/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container Styles */
.container {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
/* Background Image (Keep as is) */
    background-image: url('assets/img/Hexagon-dotted-connect-line-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: overlay;
}

/* Container Styles */
.privacy-container {
    padding: 20px; /* Keep padding consistent */
    text-align: center; /* Center-align the text */
    margin: 0 auto;   /*  Center the container horizontally */
    display: flex;        /* Use flexbox */
    flex-direction: column; /* Stack content vertically */
     /* Background Image (Keep as is) */
    background-image: url('assets/img/Hexagon-dotted-connect-line-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: overlay;
}

/* Logo Button Styles (RESPONSIVE) */
#logo-button {
    display: inline-block; /*  Important for sizing */
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    width: 80%;       /*  Start with a large percentage of the container */
    max-width: 500px;  /*  But limit the absolute maximum size */
    height: auto;      /*  Maintain aspect ratio */
    transition: transform 0.2s ease-in-out;
}

#logo-button:hover {
    transform: scale(1.1);
}

#logo-button img {
    width: 100%;   /*  Image fills the button */
    height: auto;  /*  Maintain aspect ratio */
    display: block; /*  Remove any extra space below the image */
}

/* Footer Styles */
footer {
    background-color: #ddd;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer nav ul li {
    display: inline-block;
    margin: 0 10px;
}

footer a {
    text-decoration: none;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

footer a:hover {
    background-color: #0056b3;
    color: white;
}

/* NO MEDIA QUERIES NEEDED (for the logo, in this case) */
/* The width: 80% and max-width: 500px handle responsiveness */

/* Privacy Policy Page Specific Styles */
.container h2 {
    margin-top: 2em; /* Add some space above h2 headings */
    margin-bottom: 0.5em;
    font-size: 1.5em; /* Slightly smaller than the main h1 */
}

.container h3 {
     margin-top: 1.5em;
     margin-bottom: 0.5em;
    font-size: 1.2em;
}

.container ul {
    list-style: disc; /* Use standard bullet points */
    margin-left: 20px; /* Indent the list */
    margin-bottom: 1em;
}

.container li {
    margin-bottom: 0.5em; /* Space between list items */
}

.container p {
    line-height: 1.6; /* Improve readability with more line spacing */
    margin-bottom: 1em;
}
/* Style for the "Back to Home" link */
.container p:last-child a {
  display: inline-block; /* Allows for padding and margins */
  padding: 10px 20px;
  background-color: #007bff; /*  Blue color */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px; /* Space above the link */
  transition: background-color 0.3s ease;
}

.container p:last-child a:hover {
    background-color: #0056b3;
}

/* Privacy Policy Page Specific Styles */
.privacy-container h2 {
    margin-top: 1.5em;  /* Reduced top margin */
    margin-bottom: 0.5em;
    font-size: 1.5em;
    color: #0056b3;
}

.privacy-container h3 {
    margin-top: 1em;  /* Reduced top margin */
    margin-bottom: 0.5em;
    font-size: 1.2em;
    color: #333;
}

.privacy-container ul {
    list-style: disc;
    margin-left: 0; /* Remove left margin */
    padding-left: 0; /*Remove left padding*/
    margin-bottom: 1em;
    list-style-position: inside;
}

.privacy-container li {
    margin-bottom: 0.5em;
}

.privacy-container p {
    line-height: 1.6;
    margin-bottom: 1em;
    color: #444;
}

/* Style for the "Back to Home" link */
.privacy-container p:last-child a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.privacy-container p:last-child a:hover {
    background-color: #0056b3;
}