body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.ccpa-header {
    background: linear-gradient(to right, #db5604, #db5604);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 10px;
}

.ccpa-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}

.ccpa-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ccpa-section {
    margin-bottom: 40px;
}

.ccpa-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ccpa-section h3 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}

.ccpa-section h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ccpa-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ccpa-section ul {
    margin-top: 10px;
    margin-left: 20px;
}

.ccpa-section ul li {
    font-size: 16px;
    line-height: 1.6;
    list-style-type: disc;
    margin-bottom: 10px;
}


.nav-item {
  position: relative;
  margin-right: 1.5rem; 
}

.nav-link {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 800;
}

.navbar-nav {
  margin-left: auto;
}

.dropdown-menu {
  background-color: #343a40;
  border: none;
  display: none; 
  position: absolute;
  top: 100%; 
}

@media (min-width: 992px) {
  .nav-item:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-item {
  color: #ffffff;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background-color: #fd7e14;
  color: #ffffff;
}


@media (max-width: 991px) {

  .dropdown-menu {
    position: static;
    display: none;
    /* margin-top: 0.5rem; */
  }
  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    display: block;
  }
  .nav-item {
    margin-right: 0;
  }

  .dropdown-item {
    text-align: start;
  }
}

.footer-policies {
  margin: 0;
  margin-left: 15px;
  color: white;
}

.footer-policies a {
  color: #fd7e14;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer {
  margin-top: 100px;
}

/* Footer */
footer {
  background-color: rgb(19, 19, 19);
  padding: 2em 4em;
}

.footer-content {
  margin-bottom: 1em;
}

.footer-content p {
  margin: 0.5em 0;
  color: white;
}

.social-media {
  margin-top: 1em;
}

.social-media a {
  margin-right: 1em;
  text-decoration: none;
}

.social-media .icons2 {
  font-size: 2rem;
  color: white;
}

.right {
  text-align: justify;
}

.subscription-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

#Email {
  width: 10%;
  flex: 1;
  padding: 0.5em;
  border-radius: 4px;
  border: none;
  outline: none;
  background-color: rgb(49, 49, 49);
  color: #ddd;
}

button {
  background-color: rgb(251, 115, 45);
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: rgb(251, 115, 45);
}

@media (max-width: 767px) {
  .contact-section {
      flex-direction: column;
      align-items: center;
      margin-left: 0;
      width: 100%;
  }

  .contact-left, .contact-right {
      width: 100%;
      border-radius: 30px 30px 0 0;
      margin-bottom: 20px;
  }

  .contact-right {
      border-radius: 0 0 30px 30px;
  }

  footer {
      padding: 2em 0em;
  }

  .footer-content {
      text-align: justify;
  }

  .subscription-form {
      flex-direction: column;
      gap: 0.5em;
  }

  input[type="email"], button {
      width: 100%;
  }
  #Email{
      width: 100%;
  }
  button {
      width: 40%;
  }
}

#footer {
  margin-top: 50px;
}