/* style/features.css */
.page-features {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-features__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-features__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    filter: blur(80px);
}

.page-features__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    filter: blur(90px);
}

.page-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-features__hero-actions .page-features__btn {
  margin: 0 10px;
  min-width: 180px;
}

.page-features__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-features__btn--primary {
  background-color: #ffc107;
  color: #000;
}

.page-features__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-features__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffc107;
}

.page-features__btn--secondary:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-2px);
}

.page-features__btn--link {
  color: #007bff;
  background-color: transparent;
  padding: 0;
  font-size: 0.9em;
}

.page-features__btn--link:hover {
  color: #0056b3;
  text-decoration: underline;
  transform: none;
}

.page-features__btn--small {
    padding: 8px 15px;
    font-size: 0.85em;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.page-features__btn--small:hover {
    background-color: #0056b3;
}

.page-features__btn--large {
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-features__section {
  padding: 60px 0;
  text-align: center;
}

.page-features__section--alt {
  background-color: #f0f4f8;
}

.page-features__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #007bff;
}

.page-features__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-features__image-wrapper {
    margin-top: 40px;
}

.page-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-features__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-features__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-features__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
}

.page-features__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-features__feature-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-features__highlight {
    color: #ffc107;
}

.page-features__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-features__detail-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-features__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-features__detail-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-features__detail-title a {
    color: #007bff;
    text-decoration: none;
}

.page-features__detail-title a:hover {
    text-decoration: underline;
}

.page-features__detail-description {
    color: #777;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-features__cta-bottom {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-features__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107;
}

.page-features__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-features__hero-title {
    font-size: 2.8em;
  }
  .page-features__section-title {
    font-size: 2em;
  }
  .page-features__cta-title {
    font-size: 2.2em;
  }
  .page-features__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-features__hero {
    padding: 80px 0;
  }
  .page-features__hero-title {
    font-size: 2.2em;
  }
  .page-features__hero-description {
    font-size: 1em;
  }
  .page-features__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-features__hero-actions .page-features__btn {
    margin: 0;
    min-width: unset;
  }
  .page-features__section {
    padding: 40px 0;
  }
  .page-features__section-title {
    font-size: 1.8em;
  }
  .page-features__section-description {
    font-size: 0.95em;
  }
  .page-features__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-features__detail-list {
      grid-template-columns: 1fr;
  }
  .page-features__cta-bottom {
    padding: 60px 0;
  }
  .page-features__cta-title {
    font-size: 1.8em;
  }
  .page-features__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-features__hero-title {
    font-size: 1.8em;
  }
  .page-features__section-title {
    font-size: 1.5em;
  }
  .page-features__cta-title {
    font-size: 1.6em;
  }
}