/* Information Security Page Styles */
:root {
  --primary-color: #ffa600;
  --secondary-color: #007cba;
  --dark-text: #2d3142;
  --light-text: #4a5568;
  --bg-light: #f8f9fc;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.security-hero {
  position: relative;
  background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}

.security-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.security-hero-badge {
  display: inline-block;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  animation: fadeInDown 1s forwards;
}

.security-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px;
  background: linear-gradient(90deg, var(--dark-text), #595c73);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s forwards 0.3s;
  opacity: 0;
}

.security-hero-divider {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff8c00);
  margin: 0 auto 30px;
  border-radius: 2px;
  animation: expandWidth 1.5s forwards 0.6s;
}

.security-hero-description {
  font-size: 18px;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s forwards 0.8s;
  opacity: 0;
}

.security-hero-description span {
  color: var(--primary-color);
  font-weight: 600;
}

.security-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.security-shape.shape-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 166, 0, 0.1) 0%,
    rgba(255, 166, 0, 0.05) 50%,
    rgba(255, 166, 0, 0) 70%
  );
  animation: float 8s ease-in-out infinite;
}

.security-shape.shape-2 {
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 124, 186, 0.1) 0%,
    rgba(0, 124, 186, 0.05) 50%,
    rgba(0, 124, 186, 0) 70%
  );
  animation: float 10s ease-in-out infinite reverse;
}

/* Security Policy Section */
.security-policy {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.policy-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.policy-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #ff8c00);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  box-shadow: 0 6px 12px rgba(255, 166, 0, 0.2);
}

.policy-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: var(--dark-text);
}

.policy-content {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.policy-content p {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.policy-list {
  margin: 20px 0;
  padding-left: 20px;
}

.policy-list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
  color: var(--light-text);
  font-size: 16px;
  line-height: 1.7;
}

.policy-list li:before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
  font-size: 12px;
}

.policy-list.commitments li:before {
  content: "\f00c";
  color: var(--secondary-color);
}

.commitment-final {
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 30px;
  font-size: 18px;
}

.signature {
  margin-top: 50px;
  text-align: right;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.signature p {
  margin: 5px 0;
}

/* Security Features Section */
.security-features {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.features-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--dark-text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 124, 186, 0.1) 0%,
    rgba(0, 124, 186, 0.2) 100%
  );
  color: var(--secondary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: var(--transition);
}

.feature-item:nth-child(1) .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 166, 0, 0.1) 0%,
    rgba(255, 166, 0, 0.2) 100%
  );
  color: var(--primary-color);
}

.feature-item:nth-child(3) .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.1) 0%,
    rgba(76, 175, 80, 0.2) 100%
  );
  color: #4caf50;
}

.feature-item:nth-child(4) .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.1) 0%,
    rgba(156, 39, 176, 0.2) 100%
  );
  color: #9c27b0;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.feature-item p {
  font-size: 15px;
  color: var(--light-text);
  margin: 0;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-item:hover .feature-icon {
  transform: rotateY(180deg);
}

/* CTA Section */
.security-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 15px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 30px;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .security-hero-title {
    font-size: 42px;
  }

  .policy-header h2 {
    font-size: 28px;
  }

  .features-title,
  .cta-content h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .security-hero {
    padding: 120px 0 60px;
  }

  .security-hero-title {
    font-size: 36px;
  }

  .security-hero-description {
    font-size: 16px;
  }

  .policy-header {
    flex-direction: column;
    text-align: center;
  }

  .policy-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .policy-content {
    padding: 30px 25px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .signature {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .security-hero-title {
    font-size: 30px;
  }

  .security-hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .policy-header h2,
  .features-title,
  .cta-content h2 {
    font-size: 24px;
  }

  .policy-content {
    padding: 25px 20px;
  }

  .policy-content p,
  .policy-list li {
    font-size: 14px;
  }
}
