body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Top Navigation */
#top-nav {
  display: flex;
  background-color: #333;
  padding: 10px;
  color: white;
}

.nav-item {
  margin: 0 15px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.nav-item:hover {
  text-decoration: underline;
}
.nav-item::after {
  content: "|"; /* Separator character */
  margin-left: 30px; /* Space before the separator */
  color: #9e9999; /* Adjust separator color */
}

.nav-item:last-child::after {
  content: ""; /* No separator for the last item */
}

/* Submenu (Initially Hidden) */
.submenu {
  display: none;
  position: absolute;
  background-color: #444;
  padding: 10px;
  margin-top: 5px;
  list-style-type: none;
  border-radius: 4px;
}

.submenu-item {
  padding: 5px 10px;
  cursor: pointer;
  color: white;
}

.submenu-item:hover {
  background-color: #555;
}

/* Content Section */
#content {
  padding: 20px;
  text-align: left;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Top Navigation */
#top-nav {
  display: flex;
  justify-content: center; /* Center-align menu items */
  align-items: center;    /* Vertically center items */
  background-color: #ffffff;
  padding: 10px;
  color: rgb(20, 20, 20);
}

.nav-item {
  cursor: pointer;
  margin: 0 15px;
  color: rgb(37, 36, 36);
  text-decoration: none;
}

.nav-item:hover {
  text-decoration: underline;
}

/* Sidebars */
#sidebar, #terms_sidebar, #terms_blog_sidebar, #news_sidebar, #music_sidebar {
  position:absolute;
  left: -300px; /* Hidden by default */
  top: 90px;
  height: auto;
  width: 250px;
  background-image: linear-gradient(to bottom, #b8b1b1 0%, #ffffff 100%);
  overflow-y: auto;
  transition: left 0.3s;
  padding: 15px;
  color: rgb(20, 20, 20);
  z-index: 10;
}

/* Custom Line Style */
.sidebar-line {
  border: none;
  height: 1px;
  background-color: #a39c9c;
  width: 80%;
  margin-left: 0px;
}
.top-nav-line{
  border: none;
  height: 1px;
  background-color: #8f8787;
  width: 60%;
  margin: 20px auto;
}
.sidebar-item {
  cursor: pointer;
  margin: 15px 0;
  padding-left: 10px;
  color: rgb(46, 43, 43);
}

.sidebar-item:hover {
  text-decoration: underline;
}
#content {
  margin-left: 20%;
  margin-right: 20%;
  padding: 20px;
  background: #f4f4f4;
  flex: 1;
}

#footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
}
.text-content p{
  color: black
}
#content p{
  color: black;
}

/*PRIVACY POLICY CONTAINER*/

.privacy-policy-container {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}
.privacy-policy-container h1,
.privacy-policy-container h2,
.privacy-policy-container h3 {
  color: #2a7ae2;
}
.privacy-policy-container h1 {
  font-size: 24px;
}
.privacy-policy-container h3 {
  font-size: 18px;
}

.privacy-policy-container a {
  color: #2a7ae2;
  text-decoration: none;
}


/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 768px) {
  .privacy-policy-container {
    width: 100%; /* Take up almost the full width of the screen */
    margin: 0% auto; /* Reduce top margin for mobile screens */
    padding: 0px; /* Slightly smaller padding */
    border-radius: 5px; /* Adjust for smaller screens */
  }

  .privacy-policy-container h1 {
    font-size: 20px; /* Reduce font size for better fit */
  }

  .privacy-policy-container h2 {
    font-size: 18px; /* Reduce font size */
  }

  .privacy-policy-container h3 {
    font-size: 16px; /* Reduce font size */
  }

  .privacy-policy-container ul {
    margin: 8px 0 8px 15px; /* Adjust margins for smaller screens */
  }
  #content {
    margin-left: 0%;
    margin-right: 0%;
    flex: 1;
  }
}

/* SMALLER SCREENS (E.G., PHONES) */
@media screen and (max-width: 480px) {
  .privacy-policy-container {
    width: 100%; /* Utilize more screen width */
    padding: 10px; /* Smaller padding for compact screens */
    border-radius: 3px; /* Further adjust border radius */
  }

  .privacy-policy-container h1 {
    font-size: 18px; /* Further reduce font size */
  }

  .privacy-policy-container h2 {
    font-size: 16px;
  }

  .privacy-policy-container h3 {
    font-size: 14px;
  }
}


/*STYLE FOR THE OVERVIEW PAGE*/

.page-title {
  text-align: center;
  font-size: 2rem;
  margin: 20px 0;
  color: #333;
}

.section-container {
  display: flex;
  flex-wrap: wrap; /* Enables wrapping for smaller screens */
  justify-content: space-between; /* Spreads items evenly */
  gap: 10px; /* Adds space between rows and columns */
  margin: 10px;
  padding: 0 10px; /* Padding for responsiveness */
}

/* Section Styling */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  flex: 1 1 calc(33.33% - 40px); /* Default: Three items per row */
  max-width: 300px; /* Prevents overly large sections */
  text-align: center;
}

.section-icon {
  font-size: 2.5rem;
}

/* Unique Section Colors */
.privacy-policy .section-icon {
  color: #4CAF50; /* Green */
}

.terms-of-service .section-icon {
  color: #2196F3; /* Blue */
}

.safety-security .section-icon {
  color: #FF9800; /* Orange */
}

.user-accounts .section-icon {
  color: #9C27B0; /* Purple */
}

.licensing-downloads .section-icon {
  color: #F44336; /* Red */
}

.compliance-principles .section-icon {
  color: #607D8B; /* Grey */
}

/* Section Content */
.section-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.section-description {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #555;
}

.section-link {
  display: inline-block;
  margin-top: 10px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.section-link:hover {
  text-decoration: underline;
}

/* Responsive Design: Single Column for Mobile */
@media (max-width: 768px) {
  .section {
      flex: 1 1 100%; /* Single column */
      max-width: 100%; /* Full width */
  }

  .section-container {
      justify-content: center; /* Center the sections */
  }
}


#sectionContent{
  margin-left: 20%;
  margin-right: 20%;
  padding: 20px;
  background: #f4f4f4;
  flex: 1;
}