:root {
  --primary-color: #e8651b;
  --secondary-color: #1d384b;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --border-color: #e0e0e0;
  --hover-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.orange-bar {
  height: 8px;
  background-color: var(--primary-color);
  margin-bottom: 30px;
}

.policy-header {
  padding: 20px 0;
  background-color: #fff;
  text-align: center;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal !important;
}

.policy-meta {
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 30px;
}

.policy-meta div {
  margin: 5px 0;
  color: var(--secondary-color);
}

.toggle-container {
  margin-bottom: 60px;
}

.toggle-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.toggle-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toggle-header {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background-color: #fff;
  cursor: pointer;
  border-left: 5px solid var(--primary-color);
  transition: background-color 0.3s ease;
}

.toggle-header:hover {
  background-color: var(--hover-color);
}

.toggle-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 15px;
  min-width: 30px;
}

.toggle-title {
  font-size: 1.2rem;
  font-weight: 600;
  flex-grow: 1;
  color: var(--secondary-color);
}

.toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.toggle-icon:before,
.toggle-icon:after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  transition: transform 0.3s ease;
}

.toggle-icon:before {
  width: 100%;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.toggle-icon:after {
  width: 3px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.toggle-header.active .toggle-icon:after {
  transform: translateX(-50%) rotate(90deg);
}

.toggle-content {
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.toggle-inner {
  padding: 25px 25px 25px 70px;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.data-category {
  margin: 25px 0;
}

.data-category h3 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.data-item {
  background-color: var(--light-gray);
  padding: 12px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.data-item:before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 10px;
}

.sub-item {
  margin: 20px 0;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.sub-item strong {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 5px;
}

.contact-section {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.contact-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-section a:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 150px;
}

.footer-address {
  margin-top: 20px;
  line-height: 1.8;
}

.footer-links h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media(max-width: 768px) {
    .toggle-inner{
        padding: 25px;
    }
    .toggle-title{
        width: 75%;
    }
    .policy-header h1 {
      font-size: 1.5rem;

    }
}