.mobile-page-container {
  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
}

.mobile-page-header {
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-title {
  font-size: 28px;
  margin: 0 0 10px;
  font-weight: 700;
}

.page-subtitle {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.mobile-page-content {
  padding: 25px 20px;
}

.description-section {
  margin-bottom: 40px;
}

.description-section h2 {
  color: #444;
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.description-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #6e8efb, #a777e3);
  border-radius: 3px;
}

.description-section p {
  margin-bottom: 15px;
  font-size: 16px;
}

.action-buttons h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
  color: #444;
}

.buttons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.action-button {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.primary-button {
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
}

.secondary-button {
  background: #f1f3ff;
  color: #4a5bf3;
  border: 1px solid #d6dcff;
}

.accent-button {
  background: #fff4f4;
  color: #ff6b6b;
  border: 1px solid #ffd6d6;
}

.special-button {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #fff;
}

.button-icon {
  font-size: 20px;
  margin-right: 12px;
}

.button-text {
  font-size: 16px;
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.mobile-page-footer {
  text-align: center;
  padding: 25px 20px;
  background: #f9f9f9;
  margin-top: 30px;
  border-radius: 20px 20px 0 0;
}

.mobile-page-footer p {
  margin: 0 0 10px;
  color: #666;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  color: #6e8efb;
  text-decoration: none;
  font-size: 13px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .buttons-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .mobile-page-header {
    padding: 40px 20px;
  }
  
  .page-title {
    font-size: 32px;
  margin-bottom: 12px;
  }
  
  .page-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .mobile-page-container {
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }
  
  .mobile-page-content {
    padding: 30px 25px;
  }
}