/* style/privacy-policy.css */

:root {
    --primary-color: #0A192F; /* Tech Blue */
    --secondary-color: #FFD700; /* Luxury Gold */
    --text-light: #F0F2F5; /* Light grey for text on dark backgrounds */
    --text-dark: #1A1A1A; /* Dark grey for text on light backgrounds */
    --background-light: #FFFFFF; /* White background */
    --background-dark: #1F2E4A; /* Slightly lighter than primary for sections */
    --border-color: #E0E0E0;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-privacy-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-privacy-policy-hero {
    background: linear-gradient(135deg, var(--primary-color), #2C3E50);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
}

.page-privacy-policy-hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-privacy-policy-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy-cta-button:hover {
    background: #FFEC8B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy-section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-privacy-policy-section h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.page-privacy-policy-section p {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-privacy-policy-section ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-privacy-policy-section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy-section a:hover {
    color: var(--secondary-color);
}

.page-privacy-policy-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-privacy-policy-text-content {
    flex: 2;
}

.page-privacy-policy-image-content {
    flex: 1;
    text-align: center;
}

.page-privacy-policy-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-privacy-policy-image-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-privacy-policy-image-row .page-privacy-policy-image-small {
    width: calc(50% - 10px);
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

@media (max-width: 992px) {
    .page-privacy-policy-content-wrapper {
        flex-direction: column;
    }
    .page-privacy-policy-image-content {
        margin-top: 30px;
    }
    .page-privacy-policy-hero h1 {
        font-size: 2.5em;
    }
    .page-privacy-policy-hero p {
        font-size: 1.1em;
    }
    .page-privacy-policy-section h2 {
        font-size: 2em;
    }
    .page-privacy-policy-section h3 {
        font-size: 1.5em;
    }
    .page-privacy-policy-image-row .page-privacy-policy-image-small {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy-hero {
        padding: 60px 15px;
    }
    .page-privacy-policy-hero h1 {
        font-size: 2em;
    }
    .page-privacy-policy-hero p {
        font-size: 1em;
    }
    .page-privacy-policy-section {
        padding: 40px 0;
    }
    .page-privacy-policy-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-privacy-policy-section h3 {
        font-size: 1.3em;
    }
    .page-privacy-policy-container {
        padding: 15px;
    }
    .page-privacy-policy-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--background-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--primary-color);
  flex-grow: 1;
  padding-left: 0; /* Override section h3 style */
  border-left: none; /* Override section h3 style */
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}