/* Common Styles for Additional Pages */
.page-header {
    background: var(--primary-gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .page-header h1 {
    color: var(--white);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  
  .page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 100%);
    z-index: 0;
  }
  
  .page-content {
    padding: 80px 0;
  }
  
  .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .content-wrapper h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
  }
  
  .content-wrapper p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
  }
  
  .image-feature {
    margin: 40px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .image-feature img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .cta-box {
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-top: 60px;
  }
  
  .cta-box h3 {
    margin-bottom: 24px;
  }
  
  /* About Us Page Styles */
  .about-us .content-wrapper {
    text-align: center;
  }
  
  /* Careers Page Styles */
  .job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .job-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .job-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .job-header h4 {
    margin-bottom: 0;
  }
  
  .job-badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .job-card p {
    margin-bottom: 24px;
    font-size: 1rem;
  }
  
  .open-application {
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 40px 0;
  }
  
  .open-application h3 {
    margin-bottom: 16px;
  }
  
  .open-application p {
    margin-bottom: 0;
  }
  
  /* Help Center Page Styles */
  .help-search {
    margin: 40px 0;
  }
  
  .help-search form {
    display: flex;
    gap: 16px;
  }
  
  .help-search input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
  }
  
  .help-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
  }
  
  .help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }
  
  .help-category {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .help-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .category-icon svg {
    color: var(--primary);
  }
  
  .help-category h3 {
    margin-bottom: 16px;
  }
  
  .faq-section {
    margin: 60px 0;
  }
  
  .faq-list {
    border-top: 1px solid var(--border);
  }
  
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  
  .faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question h4 {
    margin-bottom: 0;
  }
  
  .faq-toggle {
    background: none;
    border: none;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .faq-toggle:hover {
    background-color: var(--primary-light);
  }
  
  .faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0 0 20px;
    display: none;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .contact-support-section {
    margin-top: 60px;
  }
  
  .contact-support-section h3 {
    margin-bottom: 20px;
  }
  
  .support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .support-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .method-icon svg {
    color: var(--primary);
  }
  
  .method-details h4 {
    margin-bottom: 8px;
  }
  
  .method-details p {
    margin-bottom: 0;
    font-size: 1rem;
  }
  
  /* Case Studies Page Styles */
  .case-studies {
    margin: 40px 0;
  }
  
  .case-study {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    transition: all 0.3s ease;
  }
  
  .case-study:hover {
    transform: translateY(-10px);
  }
  
  .case-study-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .case-study-content {
    padding: 30px;
  }
  
  .case-study-header {
    margin-bottom: 20px;
  }
  
  .case-study-header h3 {
    margin-bottom: 20px;
  }
  
  .case-study-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .case-study-stats .stat {
    display: flex;
    flex-direction: column;
  }
  
  .case-study-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
  }
  
  .case-study-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
  }
  
  .case-study-content p {
    margin-bottom: 24px;
  }
  
  /* Cookie Policy Page Styles */
  .policy-meta {
    margin-bottom: 30px;
    color: var(--text-light);
    font-style: italic;
  }
  
  .policy-section {
    margin-bottom: 40px;
  }
  
  .policy-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  
  .policy-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .policy-list {
    margin-left: 20px;
  }
  
  .policy-list li {
    margin-bottom: 20px;
  }
  
  .policy-list h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  
  .browser-instructions {
    background-color: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
  }
  
  .browser-instructions h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }
  
  .browser-instructions ul {
    margin-left: 20px;
    list-style-type: disc;
  }
  
  .browser-instructions li {
    margin-bottom: 8px;
  }
  
  /* GDPR Compliance Page Styles */
  .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
  }
  
  .right-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .right-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .right-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .right-icon svg {
    color: var(--primary);
  }
  
  .right-card h4 {
    margin-bottom: 8px;
  }
  
  .right-card p {
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  
  .security-measures {
    margin-top: 30px;
  }
  
  .security-measure {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .measure-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .measure-icon svg {
    color: var(--primary);
  }
  
  .measure-details h4 {
    margin-bottom: 8px;
  }
  
  .measure-details p {
    margin-bottom: 0;
    font-size: 1rem;
  }
  
  .data-request-form {
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 40px;
  }
  
  .data-request-form h4 {
    margin-bottom: 24px;
  }
  
  .data-request-form .form-group {
    margin-bottom: 20px;
  }
  
  .data-request-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .data-request-form input,
  .data-request-form select,
  .data-request-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
  }
  
  .data-request-form input:focus,
  .data-request-form select:focus,
  .data-request-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
  }
  
  .data-request-form button {
    margin-top: 10px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .page-header {
      padding: 60px 0;
    }
  
    .page-content {
      padding: 60px 0;
    }
  
    .help-search form {
      flex-direction: column;
    }
  
    .case-study-stats {
      flex-direction: column;
      gap: 15px;
    }
  
    .support-methods,
    .help-categories,
    .rights-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #333;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  resize: none;
}

