.page-gdpr-data-breach-response {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0d1241; /* Darker variant of #1A237E for main background */
  line-height: 1.6;
}

.page-gdpr-data-breach-response__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr-data-breach-response__hero-section {
  background: linear-gradient(135deg, #1A237E, #2c388e);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr-data-breach-response__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-data-breach-response__hero-subtitle {
  font-size: 1.3em;
  color: #B0BEC5; /* Light blue-grey for subtitle */
  margin-bottom: 40px;
}

.page-gdpr-data-breach-response__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-gdpr-data-breach-response__content-section {
  padding: 60px 0;
  background-color: #1A237E; /* Main dark blue for content sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr-data-breach-response__content-section:nth-child(even) {
  background-color: #161e6b; /* Slightly different dark blue for alternating sections */
}

.page-gdpr-data-breach-response__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr-data-breach-response__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr-data-breach-response__process-step {
  background-color: #262f83; /* Lighter dark blue for process steps */
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-gdpr-data-breach-response__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.page-gdpr-data-breach-response__step-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-gdpr-data-breach-response__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr-data-breach-response__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-gdpr-data-breach-response__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

.page-gdpr-data-breach-response__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr-data-breach-response__link:hover {
  color: #FFF; /* White on hover */
  text-decoration: underline;
}

.page-gdpr-data-breach-response__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #1A237E; /* Dark blue text on gold button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr-data-breach-response__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #0d1241; /* Darker blue text */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr-data-breach-response__hero-title {
    font-size: 2em;
  }

  .page-gdpr-data-breach-response__hero-subtitle {
    font-size: 1em;
  }

  .page-gdpr-data-breach-response__section-title {
    font-size: 1.8em;
  }

  .page-gdpr-data-breach-response__process-step {
    padding: 20px;
  }

  .page-gdpr-data-breach-response__step-title {
    font-size: 1.5em;
  }

  .page-gdpr-data-breach-response__list li {
    padding-left: 25px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-data-breach-response__hero-title {
    font-size: 1.5em;
  }

  .page-gdpr-data-breach-response__hero-subtitle {
    font-size: 0.9em;
  }

  .page-gdpr-data-breach-response__section-title {
    font-size: 1.5em;
  }

  .page-gdpr-data-breach-response__process-step {
    padding: 15px;
  }

  .page-gdpr-data-breach-response__step-title {
    font-size: 1.2em;
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr-data-breach-response__step-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-gdpr-data-breach-response__list li {
    font-size: 0.9em;
  }
  
  .page-gdpr-data-breach-response__button {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
  }
}