.title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Actions Section */
.actions {
  padding: 4rem 1rem;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.action-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.action-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.action-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.btn {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transition: left 0.3s;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Legal Section */
.legal {
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem 0;
  margin-top: 2rem;
  border-radius: 30px 30px 0 0;
}
.legal-content {
  background: linear-gradient(135deg, #f8fafc 0%, #e8ebed 100%);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.legal-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.name-article {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.created-article {
  margin-bottom: 1rem;
  text-decoration: underline;
  color: var(--accent-color);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.text-article {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .action-card {
    padding: 2rem;
  }
}
