/* style/platform-features-security-tech.css */

/* Variables for colors */
:root {
  --page-primary-color: #2C3E50;
  --page-secondary-color: #F39C12;
  --page-text-light: #ecf0f1;
  --page-text-dark: #34495e;
  --page-bg-dark: #2c3e50;
  --page-bg-light: #f5f5f5;
  --page-accent-color: #d3c1af; /* Complementary to primary */
  --page-button-text-color: #FFFFFF;
}

.page-platform-features-security-tech {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-dark);
  background-color: var(--page-bg-light);
}

.page-platform-features-security-tech__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-platform-features-security-tech__hero {
  background: linear-gradient(135deg, var(--page-primary-color), var(--page-secondary-color));
  color: var(--page-text-light);
  padding: 100px 0;
  text-align: center;
}

.page-platform-features-security-tech__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-text-light);
  font-weight: bold;
}

.page-platform-features-security-tech__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-platform-features-security-tech__cta-button {
  display: inline-block;
  background-color: var(--page-secondary-color);
  color: var(--page-button-text-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-platform-features-security-tech__cta-button:hover {
  background-color: #e08e0b; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-platform-features-security-tech__section {
  padding: 80px 0;
}

.page-platform-features-security-tech__section:nth-of-type(even) {
  background-color: var(--page-bg-light);
}

.page-platform-features-security-tech__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-platform-features-security-tech__section-title {
  font-size: 2.2em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-platform-features-security-tech__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-secondary-color);
  border-radius: 2px;
}

.page-platform-features-security-tech__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-platform-features-security-tech__content-wrapper p {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--page-text-dark);
}

.page-platform-features-security-tech__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-platform-features-security-tech__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid var(--page-secondary-color);
}

.page-platform-features-security-tech__feature-item:hover {
  transform: translateY(-5px);
}

.page-platform-features-security-tech__feature-title {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-platform-features-security-tech__feature-item p {
  font-size: 1em;
  color: var(--page-text-dark);
  margin-bottom: 0;
}

.page-platform-features-security-tech__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-platform-features-security-tech__app-download {
  background-color: var(--page-bg-dark);
  color: var(--page-text-light);
  padding: 80px 0;
}

.page-platform-features-security-tech__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-platform-features-security-tech__app-text h2,
.page-platform-features-security-tech__app-text p {
  color: var(--page-text-light);
}

.page-platform-features-security-tech__app-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-platform-features-security-tech__conclusion {
  text-align: center;
  padding-bottom: 100px;
}

.page-platform-features-security-tech__cta-button--final {
  margin-top: 40px;
  background-color: var(--page-primary-color);
}

.page-platform-features-security-tech__cta-button--final:hover {
  background-color: #1e2b38; /* Darker primary */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-platform-features-security-tech__title {
    font-size: 3.5em;
  }

  .page-platform-features-security-tech__section-title {
    font-size: 2.8em;
  }

  .page-platform-features-security-tech__app-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .page-platform-features-security-tech__app-text {
    flex: 1;
    padding-right: 40px;
  }

  .page-platform-features-security-tech__app-image {
    flex-shrink: 0;
  }

  .page-platform-features-security-tech__content-wrapper {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .page-platform-features-security-tech__content-wrapper p {
    flex: 1;
  }

  .page-platform-features-security-tech__content-wrapper .page-platform-features-security-tech__image {
    flex-shrink: 0;
    max-width: 50%;
    margin-top: 0;
  }

  .page-platform-features-security-tech__section:nth-of-type(2n) .page-platform-features-security-tech__content-wrapper {
    flex-direction: row-reverse;
  }
}

@media (max-width: 767px) {
  .page-platform-features-security-tech__hero {
    padding: 60px 0;
  }

  .page-platform-features-security-tech__title {
    font-size: 2em;
  }

  .page-platform-features-security-tech__subtitle {
    font-size: 1em;
  }

  .page-platform-features-security-tech__section-title {
    font-size: 1.8em;
  }

  .page-platform-features-security-tech__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-platform-features-security-tech__app-content {
    flex-direction: column;
  }

  .page-platform-features-security-tech__app-text {
    padding-right: 0;
  }

  .page-platform-features-security-tech__image {
    margin-top: 20px;
  }
}